Go back to index | PHP CodeBrowser

modules/simpletest/tests/upgrade/drupal-6.bare.database.php
  1.    1  <?php
  2.    2 
  3.    3 /**
  4.    4  * @file
  5.    5  * Bare installation of Drupal 6.17, for test purposes.
  6.    6  *
  7.    7  * This file was generated by the dump-database-d6.sh tool, from a bare
  8.    8  * installation of Drupal 6, with only the following core optional modules
  9.    9  * enabled:
  10.   10  *  - dblog
  11.   11  *  - update
  12.   12  *
  13.   13  * Dblog fulfills the requirement that a module take care of watchdog calls,
  14.   14  * and update module is enabled at the end of installation.
  15.   15  */
  16.   16 
  17.   17 db_create_table('access', array(
  18.   18   'fields' => array(
  19.   19     'aid' => array(
  20.   20       'type' => 'serial',
  21.   21       'not null' => TRUE,
  22.   22     ),
  23.   23     'mask' => array(
  24.   24       'type' => 'varchar',
  25.   25       'length' => 255,
  26.   26       'not null' => TRUE,
  27.   27       'default' => '',
  28.   28     ),
  29.   29     'type' => array(
  30.   30       'type' => 'varchar',
  31.   31       'length' => 255,
  32.   32       'not null' => TRUE,
  33.   33       'default' => '',
  34.   34     ),
  35.   35     'status' => array(
  36.   36       'type' => 'int',
  37.   37       'not null' => TRUE,
  38.   38       'default' => 0,
  39.   39       'size' => 'tiny',
  40.   40     ),
  41.   41   ),
  42.   42   'primary key' => array(
  43.   43     'aid',
  44.   44   ),
  45.   45   'module' => 'user',
  46.   46   'name' => 'access',
  47.   47 ));
  48.   48 
  49.   49 db_create_table('actions', array(
  50.   50   'fields' => array(
  51.   51     'aid' => array(
  52.   52       'type' => 'varchar',
  53.   53       'length' => 255,
  54.   54       'not null' => TRUE,
  55.   55       'default' => '0',
  56.   56     ),
  57.   57     'type' => array(
  58.   58       'type' => 'varchar',
  59.   59       'length' => 32,
  60.   60       'not null' => TRUE,
  61.   61       'default' => '',
  62.   62     ),
  63.   63     'callback' => array(
  64.   64       'type' => 'varchar',
  65.   65       'length' => 255,
  66.   66       'not null' => TRUE,
  67.   67       'default' => '',
  68.   68     ),
  69.   69     'parameters' => array(
  70.   70       'type' => 'text',
  71.   71       'not null' => TRUE,
  72.   72       'size' => 'big',
  73.   73     ),
  74.   74     'description' => array(
  75.   75       'type' => 'varchar',
  76.   76       'length' => 255,
  77.   77       'not null' => TRUE,
  78.   78       'default' => '0',
  79.   79     ),
  80.   80   ),
  81.   81   'primary key' => array(
  82.   82     'aid',
  83.   83   ),
  84.   84   'module' => 'system',
  85.   85   'name' => 'actions',
  86.   86 ));
  87.   87 db_insert('actions')->fields(array(
  88.   88   'aid',
  89.   89   'type',
  90.   90   'callback',
  91.   91   'parameters',
  92.   92   'description',
  93.   93 ))
  94.   94 ->values(array(
  95.   95   'aid' => 'node_make_sticky_action',
  96.   96   'type' => 'node',
  97.   97   'callback' => 'node_make_sticky_action',
  98.   98   'parameters' => '',
  99.   99   'description' => 'Make post sticky',
  100.  100 ))
  101.  101 ->values(array(
  102.  102   'aid' => 'node_make_unsticky_action',
  103.  103   'type' => 'node',
  104.  104   'callback' => 'node_make_unsticky_action',
  105.  105   'parameters' => '',
  106.  106   'description' => 'Make post unsticky',
  107.  107 ))
  108.  108 ->values(array(
  109.  109   'aid' => 'node_promote_action',
  110.  110   'type' => 'node',
  111.  111   'callback' => 'node_promote_action',
  112.  112   'parameters' => '',
  113.  113   'description' => 'Promote post to front page',
  114.  114 ))
  115.  115 ->values(array(
  116.  116   'aid' => 'node_publish_action',
  117.  117   'type' => 'node',
  118.  118   'callback' => 'node_publish_action',
  119.  119   'parameters' => '',
  120.  120   'description' => 'Publish post',
  121.  121 ))
  122.  122 ->values(array(
  123.  123   'aid' => 'node_save_action',
  124.  124   'type' => 'node',
  125.  125   'callback' => 'node_save_action',
  126.  126   'parameters' => '',
  127.  127   'description' => 'Save post',
  128.  128 ))
  129.  129 ->values(array(
  130.  130   'aid' => 'node_unpromote_action',
  131.  131   'type' => 'node',
  132.  132   'callback' => 'node_unpromote_action',
  133.  133   'parameters' => '',
  134.  134   'description' => 'Remove post from front page',
  135.  135 ))
  136.  136 ->values(array(
  137.  137   'aid' => 'node_unpublish_action',
  138.  138   'type' => 'node',
  139.  139   'callback' => 'node_unpublish_action',
  140.  140   'parameters' => '',
  141.  141   'description' => 'Unpublish post',
  142.  142 ))
  143.  143 ->values(array(
  144.  144   'aid' => 'user_block_ip_action',
  145.  145   'type' => 'user',
  146.  146   'callback' => 'user_block_ip_action',
  147.  147   'parameters' => '',
  148.  148   'description' => 'Ban IP address of current user',
  149.  149 ))
  150.  150 ->values(array(
  151.  151   'aid' => 'user_block_user_action',
  152.  152   'type' => 'user',
  153.  153   'callback' => 'user_block_user_action',
  154.  154   'parameters' => '',
  155.  155   'description' => 'Block current user',
  156.  156 ))
  157.  157 ->execute();
  158.  158 
  159.  159 db_create_table('actions_aid', array(
  160.  160   'fields' => array(
  161.  161     'aid' => array(
  162.  162       'type' => 'serial',
  163.  163       'unsigned' => TRUE,
  164.  164       'not null' => TRUE,
  165.  165     ),
  166.  166   ),
  167.  167   'primary key' => array(
  168.  168     'aid',
  169.  169   ),
  170.  170   'module' => 'system',
  171.  171   'name' => 'actions_aid',
  172.  172 ));
  173.  173 
  174.  174 db_create_table('authmap', array(
  175.  175   'fields' => array(
  176.  176     'aid' => array(
  177.  177       'type' => 'serial',
  178.  178       'unsigned' => TRUE,
  179.  179       'not null' => TRUE,
  180.  180     ),
  181.  181     'uid' => array(
  182.  182       'type' => 'int',
  183.  183       'not null' => TRUE,
  184.  184       'default' => 0,
  185.  185     ),
  186.  186     'authname' => array(
  187.  187       'type' => 'varchar',
  188.  188       'length' => 128,
  189.  189       'not null' => TRUE,
  190.  190       'default' => '',
  191.  191     ),
  192.  192     'module' => array(
  193.  193       'type' => 'varchar',
  194.  194       'length' => 128,
  195.  195       'not null' => TRUE,
  196.  196       'default' => '',
  197.  197     ),
  198.  198   ),
  199.  199   'unique keys' => array(
  200.  200     'authname' => array(
  201.  201       'authname',
  202.  202     ),
  203.  203   ),
  204.  204   'primary key' => array(
  205.  205     'aid',
  206.  206   ),
  207.  207   'module' => 'user',
  208.  208   'name' => 'authmap',
  209.  209 ));
  210.  210 
  211.  211 db_create_table('batch', array(
  212.  212   'fields' => array(
  213.  213     'bid' => array(
  214.  214       'type' => 'serial',
  215.  215       'unsigned' => TRUE,
  216.  216       'not null' => TRUE,
  217.  217     ),
  218.  218     'token' => array(
  219.  219       'type' => 'varchar',
  220.  220       'length' => 64,
  221.  221       'not null' => TRUE,
  222.  222     ),
  223.  223     'timestamp' => array(
  224.  224       'type' => 'int',
  225.  225       'not null' => TRUE,
  226.  226     ),
  227.  227     'batch' => array(
  228.  228       'type' => 'text',
  229.  229       'not null' => FALSE,
  230.  230       'size' => 'big',
  231.  231     ),
  232.  232   ),
  233.  233   'primary key' => array(
  234.  234     'bid',
  235.  235   ),
  236.  236   'indexes' => array(
  237.  237     'token' => array(
  238.  238       'token',
  239.  239     ),
  240.  240   ),
  241.  241   'module' => 'system',
  242.  242   'name' => 'batch',
  243.  243 ));
  244.  244 
  245.  245 db_create_table('blocks', array(
  246.  246   'fields' => array(
  247.  247     'bid' => array(
  248.  248       'type' => 'serial',
  249.  249       'not null' => TRUE,
  250.  250     ),
  251.  251     'module' => array(
  252.  252       'type' => 'varchar',
  253.  253       'length' => 64,
  254.  254       'not null' => TRUE,
  255.  255       'default' => '',
  256.  256     ),
  257.  257     'delta' => array(
  258.  258       'type' => 'varchar',
  259.  259       'length' => 32,
  260.  260       'not null' => TRUE,
  261.  261       'default' => '0',
  262.  262     ),
  263.  263     'theme' => array(
  264.  264       'type' => 'varchar',
  265.  265       'length' => 64,
  266.  266       'not null' => TRUE,
  267.  267       'default' => '',
  268.  268     ),
  269.  269     'status' => array(
  270.  270       'type' => 'int',
  271.  271       'not null' => TRUE,
  272.  272       'default' => 0,
  273.  273       'size' => 'tiny',
  274.  274     ),
  275.  275     'weight' => array(
  276.  276       'type' => 'int',
  277.  277       'not null' => TRUE,
  278.  278       'default' => 0,
  279.  279       'size' => 'tiny',
  280.  280     ),
  281.  281     'region' => array(
  282.  282       'type' => 'varchar',
  283.  283       'length' => 64,
  284.  284       'not null' => TRUE,
  285.  285       'default' => '',
  286.  286     ),
  287.  287     'custom' => array(
  288.  288       'type' => 'int',
  289.  289       'not null' => TRUE,
  290.  290       'default' => 0,
  291.  291       'size' => 'tiny',
  292.  292     ),
  293.  293     'throttle' => array(
  294.  294       'type' => 'int',
  295.  295       'not null' => TRUE,
  296.  296       'default' => 0,
  297.  297       'size' => 'tiny',
  298.  298     ),
  299.  299     'visibility' => array(
  300.  300       'type' => 'int',
  301.  301       'not null' => TRUE,
  302.  302       'default' => 0,
  303.  303       'size' => 'tiny',
  304.  304     ),
  305.  305     'pages' => array(
  306.  306       'type' => 'text',
  307.  307       'not null' => TRUE,
  308.  308     ),
  309.  309     'title' => array(
  310.  310       'type' => 'varchar',
  311.  311       'length' => 64,
  312.  312       'not null' => TRUE,
  313.  313       'default' => '',
  314.  314     ),
  315.  315     'cache' => array(
  316.  316       'type' => 'int',
  317.  317       'not null' => TRUE,
  318.  318       'default' => 1,
  319.  319       'size' => 'tiny',
  320.  320     ),
  321.  321   ),
  322.  322   'primary key' => array(
  323.  323     'bid',
  324.  324   ),
  325.  325   'unique keys' => array(
  326.  326     'tmd' => array(
  327.  327       'theme',
  328.  328       'module',
  329.  329       'delta',
  330.  330     ),
  331.  331   ),
  332.  332   'indexes' => array(
  333.  333     'list' => array(
  334.  334       'theme',
  335.  335       'status',
  336.  336       'region',
  337.  337       'weight',
  338.  338       'module',
  339.  339     ),
  340.  340   ),
  341.  341   'module' => 'block',
  342.  342   'name' => 'blocks',
  343.  343 ));
  344.  344 db_insert('blocks')->fields(array(
  345.  345   'bid',
  346.  346   'module',
  347.  347   'delta',
  348.  348   'theme',
  349.  349   'status',
  350.  350   'weight',
  351.  351   'region',
  352.  352   'custom',
  353.  353   'throttle',
  354.  354   'visibility',
  355.  355   'pages',
  356.  356   'title',
  357.  357   'cache',
  358.  358 ))
  359.  359 ->values(array(
  360.  360   'bid' => '1',
  361.  361   'module' => 'user',
  362.  362   'delta' => '0',
  363.  363   'theme' => 'garland',
  364.  364   'status' => '1',
  365.  365   'weight' => '0',
  366.  366   'region' => 'left',
  367.  367   'custom' => '0',
  368.  368   'throttle' => '0',
  369.  369   'visibility' => '0',
  370.  370   'pages' => '',
  371.  371   'title' => '',
  372.  372   'cache' => '-1',
  373.  373 ))
  374.  374 ->values(array(
  375.  375   'bid' => '2',
  376.  376   'module' => 'user',
  377.  377   'delta' => '1',
  378.  378   'theme' => 'garland',
  379.  379   'status' => '1',
  380.  380   'weight' => '0',
  381.  381   'region' => 'left',
  382.  382   'custom' => '0',
  383.  383   'throttle' => '0',
  384.  384   'visibility' => '0',
  385.  385   'pages' => '',
  386.  386   'title' => '',
  387.  387   'cache' => '-1',
  388.  388 ))
  389.  389 ->values(array(
  390.  390   'bid' => '3',
  391.  391   'module' => 'system',
  392.  392   'delta' => '0',
  393.  393   'theme' => 'garland',
  394.  394   'status' => '1',
  395.  395   'weight' => '10',
  396.  396   'region' => 'footer',
  397.  397   'custom' => '0',
  398.  398   'throttle' => '0',
  399.  399   'visibility' => '0',
  400.  400   'pages' => '',
  401.  401   'title' => '',
  402.  402   'cache' => '-1',
  403.  403 ))
  404.  404 ->execute();
  405.  405 
  406.  406 db_create_table('blocks_roles', array(
  407.  407   'fields' => array(
  408.  408     'module' => array(
  409.  409       'type' => 'varchar',
  410.  410       'length' => 64,
  411.  411       'not null' => TRUE,
  412.  412     ),
  413.  413     'delta' => array(
  414.  414       'type' => 'varchar',
  415.  415       'length' => 32,
  416.  416       'not null' => TRUE,
  417.  417     ),
  418.  418     'rid' => array(
  419.  419       'type' => 'int',
  420.  420       'unsigned' => TRUE,
  421.  421       'not null' => TRUE,
  422.  422     ),
  423.  423   ),
  424.  424   'primary key' => array(
  425.  425     'module',
  426.  426     'delta',
  427.  427     'rid',
  428.  428   ),
  429.  429   'indexes' => array(
  430.  430     'rid' => array(
  431.  431       'rid',
  432.  432     ),
  433.  433   ),
  434.  434   'module' => 'block',
  435.  435   'name' => 'blocks_roles',
  436.  436 ));
  437.  437 
  438.  438 db_create_table('boxes', array(
  439.  439   'fields' => array(
  440.  440     'bid' => array(
  441.  441       'type' => 'serial',
  442.  442       'unsigned' => TRUE,
  443.  443       'not null' => TRUE,
  444.  444     ),
  445.  445     'body' => array(
  446.  446       'type' => 'text',
  447.  447       'not null' => FALSE,
  448.  448       'size' => 'big',
  449.  449     ),
  450.  450     'info' => array(
  451.  451       'type' => 'varchar',
  452.  452       'length' => 128,
  453.  453       'not null' => TRUE,
  454.  454       'default' => '',
  455.  455     ),
  456.  456     'format' => array(
  457.  457       'type' => 'int',
  458.  458       'size' => 'small',
  459.  459       'not null' => TRUE,
  460.  460       'default' => 0,
  461.  461     ),
  462.  462   ),
  463.  463   'unique keys' => array(
  464.  464     'info' => array(
  465.  465       'info',
  466.  466     ),
  467.  467   ),
  468.  468   'primary key' => array(
  469.  469     'bid',
  470.  470   ),
  471.  471   'module' => 'block',
  472.  472   'name' => 'boxes',
  473.  473 ));
  474.  474 
  475.  475 db_create_table('cache', array(
  476.  476   'fields' => array(
  477.  477     'cid' => array(
  478.  478       'type' => 'varchar',
  479.  479       'length' => 255,
  480.  480       'not null' => TRUE,
  481.  481       'default' => '',
  482.  482     ),
  483.  483     'data' => array(
  484.  484       'type' => 'blob',
  485.  485       'not null' => FALSE,
  486.  486       'size' => 'big',
  487.  487     ),
  488.  488     'expire' => array(
  489.  489       'type' => 'int',
  490.  490       'not null' => TRUE,
  491.  491       'default' => 0,
  492.  492     ),
  493.  493     'created' => array(
  494.  494       'type' => 'int',
  495.  495       'not null' => TRUE,
  496.  496       'default' => 0,
  497.  497     ),
  498.  498     'headers' => array(
  499.  499       'type' => 'text',
  500.  500       'not null' => FALSE,
  501.  501     ),
  502.  502     'serialized' => array(
  503.  503       'type' => 'int',
  504.  504       'size' => 'small',
  505.  505       'not null' => TRUE,
  506.  506       'default' => 0,
  507.  507     ),
  508.  508   ),
  509.  509   'indexes' => array(
  510.  510     'expire' => array(
  511.  511       'expire',
  512.  512     ),
  513.  513   ),
  514.  514   'primary key' => array(
  515.  515     'cid',
  516.  516   ),
  517.  517   'module' => 'system',
  518.  518   'name' => 'cache',
  519.  519 ));
  520.  520 
  521.  521 db_create_table('cache_block', array(
  522.  522   'fields' => array(
  523.  523     'cid' => array(
  524.  524       'type' => 'varchar',
  525.  525       'length' => 255,
  526.  526       'not null' => TRUE,
  527.  527       'default' => '',
  528.  528     ),
  529.  529     'data' => array(
  530.  530       'type' => 'blob',
  531.  531       'not null' => FALSE,
  532.  532       'size' => 'big',
  533.  533     ),
  534.  534     'expire' => array(
  535.  535       'type' => 'int',
  536.  536       'not null' => TRUE,
  537.  537       'default' => 0,
  538.  538     ),
  539.  539     'created' => array(
  540.  540       'type' => 'int',
  541.  541       'not null' => TRUE,
  542.  542       'default' => 0,
  543.  543     ),
  544.  544     'headers' => array(
  545.  545       'type' => 'text',
  546.  546       'not null' => FALSE,
  547.  547     ),
  548.  548     'serialized' => array(
  549.  549       'type' => 'int',
  550.  550       'size' => 'small',
  551.  551       'not null' => TRUE,
  552.  552       'default' => 0,
  553.  553     ),
  554.  554   ),
  555.  555   'indexes' => array(
  556.  556     'expire' => array(
  557.  557       'expire',
  558.  558     ),
  559.  559   ),
  560.  560   'primary key' => array(
  561.  561     'cid',
  562.  562   ),
  563.  563   'module' => 'block',
  564.  564   'name' => 'cache_block',
  565.  565 ));
  566.  566 
  567.  567 db_create_table('cache_filter', array(
  568.  568   'fields' => array(
  569.  569     'cid' => array(
  570.  570       'type' => 'varchar',
  571.  571       'length' => 255,
  572.  572       'not null' => TRUE,
  573.  573       'default' => '',
  574.  574     ),
  575.  575     'data' => array(
  576.  576       'type' => 'blob',
  577.  577       'not null' => FALSE,
  578.  578       'size' => 'big',
  579.  579     ),
  580.  580     'expire' => array(
  581.  581       'type' => 'int',
  582.  582       'not null' => TRUE,
  583.  583       'default' => 0,
  584.  584     ),
  585.  585     'created' => array(
  586.  586       'type' => 'int',
  587.  587       'not null' => TRUE,
  588.  588       'default' => 0,
  589.  589     ),
  590.  590     'headers' => array(
  591.  591       'type' => 'text',
  592.  592       'not null' => FALSE,
  593.  593     ),
  594.  594     'serialized' => array(
  595.  595       'type' => 'int',
  596.  596       'size' => 'small',
  597.  597       'not null' => TRUE,
  598.  598       'default' => 0,
  599.  599     ),
  600.  600   ),
  601.  601   'indexes' => array(
  602.  602     'expire' => array(
  603.  603       'expire',
  604.  604     ),
  605.  605   ),
  606.  606   'primary key' => array(
  607.  607     'cid',
  608.  608   ),
  609.  609   'module' => 'filter',
  610.  610   'name' => 'cache_filter',
  611.  611 ));
  612.  612 
  613.  613 db_create_table('cache_form', array(
  614.  614   'fields' => array(
  615.  615     'cid' => array(
  616.  616       'type' => 'varchar',
  617.  617       'length' => 255,
  618.  618       'not null' => TRUE,
  619.  619       'default' => '',
  620.  620     ),
  621.  621     'data' => array(
  622.  622       'type' => 'blob',
  623.  623       'not null' => FALSE,
  624.  624       'size' => 'big',
  625.  625     ),
  626.  626     'expire' => array(
  627.  627       'type' => 'int',
  628.  628       'not null' => TRUE,
  629.  629       'default' => 0,
  630.  630     ),
  631.  631     'created' => array(
  632.  632       'type' => 'int',
  633.  633       'not null' => TRUE,
  634.  634       'default' => 0,
  635.  635     ),
  636.  636     'headers' => array(
  637.  637       'type' => 'text',
  638.  638       'not null' => FALSE,
  639.  639     ),
  640.  640     'serialized' => array(
  641.  641       'type' => 'int',
  642.  642       'size' => 'small',
  643.  643       'not null' => TRUE,
  644.  644       'default' => 0,
  645.  645     ),
  646.  646   ),
  647.  647   'indexes' => array(
  648.  648     'expire' => array(
  649.  649       'expire',
  650.  650     ),
  651.  651   ),
  652.  652   'primary key' => array(
  653.  653     'cid',
  654.  654   ),
  655.  655   'module' => 'system',
  656.  656   'name' => 'cache_form',
  657.  657 ));
  658.  658 
  659.  659 db_create_table('cache_menu', array(
  660.  660   'fields' => array(
  661.  661     'cid' => array(
  662.  662       'type' => 'varchar',
  663.  663       'length' => 255,
  664.  664       'not null' => TRUE,
  665.  665       'default' => '',
  666.  666     ),
  667.  667     'data' => array(
  668.  668       'type' => 'blob',
  669.  669       'not null' => FALSE,
  670.  670       'size' => 'big',
  671.  671     ),
  672.  672     'expire' => array(
  673.  673       'type' => 'int',
  674.  674       'not null' => TRUE,
  675.  675       'default' => 0,
  676.  676     ),
  677.  677     'created' => array(
  678.  678       'type' => 'int',
  679.  679       'not null' => TRUE,
  680.  680       'default' => 0,
  681.  681     ),
  682.  682     'headers' => array(
  683.  683       'type' => 'text',
  684.  684       'not null' => FALSE,
  685.  685     ),
  686.  686     'serialized' => array(
  687.  687       'type' => 'int',
  688.  688       'size' => 'small',
  689.  689       'not null' => TRUE,
  690.  690       'default' => 0,
  691.  691     ),
  692.  692   ),
  693.  693   'indexes' => array(
  694.  694     'expire' => array(
  695.  695       'expire',
  696.  696     ),
  697.  697   ),
  698.  698   'primary key' => array(
  699.  699     'cid',
  700.  700   ),
  701.  701   'module' => 'system',
  702.  702   'name' => 'cache_menu',
  703.  703 ));
  704.  704 
  705.  705 db_create_table('cache_page', array(
  706.  706   'fields' => array(
  707.  707     'cid' => array(
  708.  708       'type' => 'varchar',
  709.  709       'length' => 255,
  710.  710       'not null' => TRUE,
  711.  711       'default' => '',
  712.  712     ),
  713.  713     'data' => array(
  714.  714       'type' => 'blob',
  715.  715       'not null' => FALSE,
  716.  716       'size' => 'big',
  717.  717     ),
  718.  718     'expire' => array(
  719.  719       'type' => 'int',
  720.  720       'not null' => TRUE,
  721.  721       'default' => 0,
  722.  722     ),
  723.  723     'created' => array(
  724.  724       'type' => 'int',
  725.  725       'not null' => TRUE,
  726.  726       'default' => 0,
  727.  727     ),
  728.  728     'headers' => array(
  729.  729       'type' => 'text',
  730.  730       'not null' => FALSE,
  731.  731     ),
  732.  732     'serialized' => array(
  733.  733       'type' => 'int',
  734.  734       'size' => 'small',
  735.  735       'not null' => TRUE,
  736.  736       'default' => 0,
  737.  737     ),
  738.  738   ),
  739.  739   'indexes' => array(
  740.  740     'expire' => array(
  741.  741       'expire',
  742.  742     ),
  743.  743   ),
  744.  744   'primary key' => array(
  745.  745     'cid',
  746.  746   ),
  747.  747   'module' => 'system',
  748.  748   'name' => 'cache_page',
  749.  749 ));
  750.  750 
  751.  751 db_create_table('cache_update', array(
  752.  752   'fields' => array(
  753.  753     'cid' => array(
  754.  754       'type' => 'varchar',
  755.  755       'length' => 255,
  756.  756       'not null' => TRUE,
  757.  757       'default' => '',
  758.  758     ),
  759.  759     'data' => array(
  760.  760       'type' => 'blob',
  761.  761       'not null' => FALSE,
  762.  762       'size' => 'big',
  763.  763     ),
  764.  764     'expire' => array(
  765.  765       'type' => 'int',
  766.  766       'not null' => TRUE,
  767.  767       'default' => 0,
  768.  768     ),
  769.  769     'created' => array(
  770.  770       'type' => 'int',
  771.  771       'not null' => TRUE,
  772.  772       'default' => 0,
  773.  773     ),
  774.  774     'headers' => array(
  775.  775       'type' => 'text',
  776.  776       'not null' => FALSE,
  777.  777     ),
  778.  778     'serialized' => array(
  779.  779       'type' => 'int',
  780.  780       'size' => 'small',
  781.  781       'not null' => TRUE,
  782.  782       'default' => 0,
  783.  783     ),
  784.  784   ),
  785.  785   'indexes' => array(
  786.  786     'expire' => array(
  787.  787       'expire',
  788.  788     ),
  789.  789   ),
  790.  790   'primary key' => array(
  791.  791     'cid',
  792.  792   ),
  793.  793   'module' => 'update',
  794.  794   'name' => 'cache_update',
  795.  795 ));
  796.  796 
  797.  797 db_create_table('files', array(
  798.  798   'fields' => array(
  799.  799     'fid' => array(
  800.  800       'type' => 'serial',
  801.  801       'unsigned' => TRUE,
  802.  802       'not null' => TRUE,
  803.  803     ),
  804.  804     'uid' => array(
  805.  805       'type' => 'int',
  806.  806       'unsigned' => TRUE,
  807.  807       'not null' => TRUE,
  808.  808       'default' => 0,
  809.  809     ),
  810.  810     'filename' => array(
  811.  811       'type' => 'varchar',
  812.  812       'length' => 255,
  813.  813       'not null' => TRUE,
  814.  814       'default' => '',
  815.  815     ),
  816.  816     'filepath' => array(
  817.  817       'type' => 'varchar',
  818.  818       'length' => 255,
  819.  819       'not null' => TRUE,
  820.  820       'default' => '',
  821.  821     ),
  822.  822     'filemime' => array(
  823.  823       'type' => 'varchar',
  824.  824       'length' => 255,
  825.  825       'not null' => TRUE,
  826.  826       'default' => '',
  827.  827     ),
  828.  828     'filesize' => array(
  829.  829       'type' => 'int',
  830.  830       'unsigned' => TRUE,
  831.  831       'not null' => TRUE,
  832.  832       'default' => 0,
  833.  833     ),
  834.  834     'status' => array(
  835.  835       'type' => 'int',
  836.  836       'not null' => TRUE,
  837.  837       'default' => 0,
  838.  838     ),
  839.  839     'timestamp' => array(
  840.  840       'type' => 'int',
  841.  841       'unsigned' => TRUE,
  842.  842       'not null' => TRUE,
  843.  843       'default' => 0,
  844.  844     ),
  845.  845   ),
  846.  846   'indexes' => array(
  847.  847     'uid' => array(
  848.  848       'uid',
  849.  849     ),
  850.  850     'status' => array(
  851.  851       'status',
  852.  852     ),
  853.  853     'timestamp' => array(
  854.  854       'timestamp',
  855.  855     ),
  856.  856   ),
  857.  857   'primary key' => array(
  858.  858     'fid',
  859.  859   ),
  860.  860   'module' => 'system',
  861.  861   'name' => 'files',
  862.  862 ));
  863.  863 
  864.  864 db_create_table('filter_formats', array(
  865.  865   'fields' => array(
  866.  866     'format' => array(
  867.  867       'type' => 'serial',
  868.  868       'not null' => TRUE,
  869.  869     ),
  870.  870     'name' => array(
  871.  871       'type' => 'varchar',
  872.  872       'length' => 255,
  873.  873       'not null' => TRUE,
  874.  874       'default' => '',
  875.  875     ),
  876.  876     'roles' => array(
  877.  877       'type' => 'varchar',
  878.  878       'length' => 255,
  879.  879       'not null' => TRUE,
  880.  880       'default' => '',
  881.  881     ),
  882.  882     'cache' => array(
  883.  883       'type' => 'int',
  884.  884       'not null' => TRUE,
  885.  885       'default' => 0,
  886.  886       'size' => 'tiny',
  887.  887     ),
  888.  888   ),
  889.  889   'primary key' => array(
  890.  890     'format',
  891.  891   ),
  892.  892   'unique keys' => array(
  893.  893     'name' => array(
  894.  894       'name',
  895.  895     ),
  896.  896   ),
  897.  897   'module' => 'filter',
  898.  898   'name' => 'filter_formats',
  899.  899 ));
  900.  900 db_insert('filter_formats')->fields(array(
  901.  901   'format',
  902.  902   'name',
  903.  903   'roles',
  904.  904   'cache',
  905.  905 ))
  906.  906 ->values(array(
  907.  907   'format' => '1',
  908.  908   'name' => 'Filtered HTML',
  909.  909   'roles' => ',1,2,',
  910.  910   'cache' => '1',
  911.  911 ))
  912.  912 ->values(array(
  913.  913   'format' => '2',
  914.  914   'name' => 'Full HTML',
  915.  915   'roles' => '',
  916.  916   'cache' => '1',
  917.  917 ))
  918.  918 ->execute();
  919.  919 
  920.  920 db_create_table('filters', array(
  921.  921   'fields' => array(
  922.  922     'fid' => array(
  923.  923       'type' => 'serial',
  924.  924       'not null' => TRUE,
  925.  925     ),
  926.  926     'format' => array(
  927.  927       'type' => 'int',
  928.  928       'not null' => TRUE,
  929.  929       'default' => 0,
  930.  930     ),
  931.  931     'module' => array(
  932.  932       'type' => 'varchar',
  933.  933       'length' => 64,
  934.  934       'not null' => TRUE,
  935.  935       'default' => '',
  936.  936     ),
  937.  937     'delta' => array(
  938.  938       'type' => 'int',
  939.  939       'not null' => TRUE,
  940.  940       'default' => 0,
  941.  941       'size' => 'tiny',
  942.  942     ),
  943.  943     'weight' => array(
  944.  944       'type' => 'int',
  945.  945       'not null' => TRUE,
  946.  946       'default' => 0,
  947.  947       'size' => 'tiny',
  948.  948     ),
  949.  949   ),
  950.  950   'primary key' => array(
  951.  951     'fid',
  952.  952   ),
  953.  953   'unique keys' => array(
  954.  954     'fmd' => array(
  955.  955       'format',
  956.  956       'module',
  957.  957       'delta',
  958.  958     ),
  959.  959   ),
  960.  960   'indexes' => array(
  961.  961     'list' => array(
  962.  962       'format',
  963.  963       'weight',
  964.  964       'module',
  965.  965       'delta',
  966.  966     ),
  967.  967   ),
  968.  968   'module' => 'filter',
  969.  969   'name' => 'filters',
  970.  970 ));
  971.  971 db_insert('filters')->fields(array(
  972.  972   'fid',
  973.  973   'format',
  974.  974   'module',
  975.  975   'delta',
  976.  976   'weight',
  977.  977 ))
  978.  978 ->values(array(
  979.  979   'fid' => '1',
  980.  980   'format' => '1',
  981.  981   'module' => 'filter',
  982.  982   'delta' => '2',
  983.  983   'weight' => '0',
  984.  984 ))
  985.  985 ->values(array(
  986.  986   'fid' => '2',
  987.  987   'format' => '1',
  988.  988   'module' => 'filter',
  989.  989   'delta' => '0',
  990.  990   'weight' => '1',
  991.  991 ))
  992.  992 ->values(array(
  993.  993   'fid' => '3',
  994.  994   'format' => '1',
  995.  995   'module' => 'filter',
  996.  996   'delta' => '1',
  997.  997   'weight' => '2',
  998.  998 ))
  999.  999 ->values(array(
  1000. 1000   'fid' => '4',
  1001. 1001   'format' => '1',
  1002. 1002   'module' => 'filter',
  1003. 1003   'delta' => '3',
  1004. 1004   'weight' => '10',
  1005. 1005 ))
  1006. 1006 ->values(array(
  1007. 1007   'fid' => '5',
  1008. 1008   'format' => '2',
  1009. 1009   'module' => 'filter',
  1010. 1010   'delta' => '2',
  1011. 1011   'weight' => '0',
  1012. 1012 ))
  1013. 1013 ->values(array(
  1014. 1014   'fid' => '6',
  1015. 1015   'format' => '2',
  1016. 1016   'module' => 'filter',
  1017. 1017   'delta' => '1',
  1018. 1018   'weight' => '1',
  1019. 1019 ))
  1020. 1020 ->values(array(
  1021. 1021   'fid' => '7',
  1022. 1022   'format' => '2',
  1023. 1023   'module' => 'filter',
  1024. 1024   'delta' => '3',
  1025. 1025   'weight' => '10',
  1026. 1026 ))
  1027. 1027 ->execute();
  1028. 1028 
  1029. 1029 db_create_table('flood', array(
  1030. 1030   'fields' => array(
  1031. 1031     'fid' => array(
  1032. 1032       'type' => 'serial',
  1033. 1033       'not null' => TRUE,
  1034. 1034     ),
  1035. 1035     'event' => array(
  1036. 1036       'type' => 'varchar',
  1037. 1037       'length' => 64,
  1038. 1038       'not null' => TRUE,
  1039. 1039       'default' => '',
  1040. 1040     ),
  1041. 1041     'hostname' => array(
  1042. 1042       'type' => 'varchar',
  1043. 1043       'length' => 128,
  1044. 1044       'not null' => TRUE,
  1045. 1045       'default' => '',
  1046. 1046     ),
  1047. 1047     'timestamp' => array(
  1048. 1048       'type' => 'int',
  1049. 1049       'not null' => TRUE,
  1050. 1050       'default' => 0,
  1051. 1051     ),
  1052. 1052   ),
  1053. 1053   'primary key' => array(
  1054. 1054     'fid',
  1055. 1055   ),
  1056. 1056   'indexes' => array(
  1057. 1057     'allow' => array(
  1058. 1058       'event',
  1059. 1059       'hostname',
  1060. 1060       'timestamp',
  1061. 1061     ),
  1062. 1062   ),
  1063. 1063   'module' => 'system',
  1064. 1064   'name' => 'flood',
  1065. 1065 ));
  1066. 1066 
  1067. 1067 db_create_table('history', array(
  1068. 1068   'fields' => array(
  1069. 1069     'uid' => array(
  1070. 1070       'type' => 'int',
  1071. 1071       'not null' => TRUE,
  1072. 1072       'default' => 0,
  1073. 1073     ),
  1074. 1074     'nid' => array(
  1075. 1075       'type' => 'int',
  1076. 1076       'not null' => TRUE,
  1077. 1077       'default' => 0,
  1078. 1078     ),
  1079. 1079     'timestamp' => array(
  1080. 1080       'type' => 'int',
  1081. 1081       'not null' => TRUE,
  1082. 1082       'default' => 0,
  1083. 1083     ),
  1084. 1084   ),
  1085. 1085   'primary key' => array(
  1086. 1086     'uid',
  1087. 1087     'nid',
  1088. 1088   ),
  1089. 1089   'indexes' => array(
  1090. 1090     'nid' => array(
  1091. 1091       'nid',
  1092. 1092     ),
  1093. 1093   ),
  1094. 1094   'module' => 'system',
  1095. 1095   'name' => 'history',
  1096. 1096 ));
  1097. 1097 
  1098. 1098 db_create_table('menu_links', array(
  1099. 1099   'fields' => array(
  1100. 1100     'menu_name' => array(
  1101. 1101       'type' => 'varchar',
  1102. 1102       'length' => 32,
  1103. 1103       'not null' => TRUE,
  1104. 1104       'default' => '',
  1105. 1105     ),
  1106. 1106     'mlid' => array(
  1107. 1107       'type' => 'serial',
  1108. 1108       'unsigned' => TRUE,
  1109. 1109       'not null' => TRUE,
  1110. 1110     ),
  1111. 1111     'plid' => array(
  1112. 1112       'type' => 'int',
  1113. 1113       'unsigned' => TRUE,
  1114. 1114       'not null' => TRUE,
  1115. 1115       'default' => 0,
  1116. 1116     ),
  1117. 1117     'link_path' => array(
  1118. 1118       'type' => 'varchar',
  1119. 1119       'length' => 255,
  1120. 1120       'not null' => TRUE,
  1121. 1121       'default' => '',
  1122. 1122     ),
  1123. 1123     'router_path' => array(
  1124. 1124       'type' => 'varchar',
  1125. 1125       'length' => 255,
  1126. 1126       'not null' => TRUE,
  1127. 1127       'default' => '',
  1128. 1128     ),
  1129. 1129     'link_title' => array(
  1130. 1130       'type' => 'varchar',
  1131. 1131       'length' => 255,
  1132. 1132       'not null' => TRUE,
  1133. 1133       'default' => '',
  1134. 1134     ),
  1135. 1135     'options' => array(
  1136. 1136       'type' => 'text',
  1137. 1137       'not null' => FALSE,
  1138. 1138     ),
  1139. 1139     'module' => array(
  1140. 1140       'type' => 'varchar',
  1141. 1141       'length' => 255,
  1142. 1142       'not null' => TRUE,
  1143. 1143       'default' => 'system',
  1144. 1144     ),
  1145. 1145     'hidden' => array(
  1146. 1146       'type' => 'int',
  1147. 1147       'not null' => TRUE,
  1148. 1148       'default' => 0,
  1149. 1149       'size' => 'small',
  1150. 1150     ),
  1151. 1151     'external' => array(
  1152. 1152       'type' => 'int',
  1153. 1153       'not null' => TRUE,
  1154. 1154       'default' => 0,
  1155. 1155       'size' => 'small',
  1156. 1156     ),
  1157. 1157     'has_children' => array(
  1158. 1158       'type' => 'int',
  1159. 1159       'not null' => TRUE,
  1160. 1160       'default' => 0,
  1161. 1161       'size' => 'small',
  1162. 1162     ),
  1163. 1163     'expanded' => array(
  1164. 1164       'type' => 'int',
  1165. 1165       'not null' => TRUE,
  1166. 1166       'default' => 0,
  1167. 1167       'size' => 'small',
  1168. 1168     ),
  1169. 1169     'weight' => array(
  1170. 1170       'type' => 'int',
  1171. 1171       'not null' => TRUE,
  1172. 1172       'default' => 0,
  1173. 1173     ),
  1174. 1174     'depth' => array(
  1175. 1175       'type' => 'int',
  1176. 1176       'not null' => TRUE,
  1177. 1177       'default' => 0,
  1178. 1178       'size' => 'small',
  1179. 1179     ),
  1180. 1180     'customized' => array(
  1181. 1181       'type' => 'int',
  1182. 1182       'not null' => TRUE,
  1183. 1183       'default' => 0,
  1184. 1184       'size' => 'small',
  1185. 1185     ),
  1186. 1186     'p1' => array(
  1187. 1187       'type' => 'int',
  1188. 1188       'unsigned' => TRUE,
  1189. 1189       'not null' => TRUE,
  1190. 1190       'default' => 0,
  1191. 1191     ),
  1192. 1192     'p2' => array(
  1193. 1193       'type' => 'int',
  1194. 1194       'unsigned' => TRUE,
  1195. 1195       'not null' => TRUE,
  1196. 1196       'default' => 0,
  1197. 1197     ),
  1198. 1198     'p3' => array(
  1199. 1199       'type' => 'int',
  1200. 1200       'unsigned' => TRUE,
  1201. 1201       'not null' => TRUE,
  1202. 1202       'default' => 0,
  1203. 1203     ),
  1204. 1204     'p4' => array(
  1205. 1205       'type' => 'int',
  1206. 1206       'unsigned' => TRUE,
  1207. 1207       'not null' => TRUE,
  1208. 1208       'default' => 0,
  1209. 1209     ),
  1210. 1210     'p5' => array(
  1211. 1211       'type' => 'int',
  1212. 1212       'unsigned' => TRUE,
  1213. 1213       'not null' => TRUE,
  1214. 1214       'default' => 0,
  1215. 1215     ),
  1216. 1216     'p6' => array(
  1217. 1217       'type' => 'int',
  1218. 1218       'unsigned' => TRUE,
  1219. 1219       'not null' => TRUE,
  1220. 1220       'default' => 0,
  1221. 1221     ),
  1222. 1222     'p7' => array(
  1223. 1223       'type' => 'int',
  1224. 1224       'unsigned' => TRUE,
  1225. 1225       'not null' => TRUE,
  1226. 1226       'default' => 0,
  1227. 1227     ),
  1228. 1228     'p8' => array(
  1229. 1229       'type' => 'int',
  1230. 1230       'unsigned' => TRUE,
  1231. 1231       'not null' => TRUE,
  1232. 1232       'default' => 0,
  1233. 1233     ),
  1234. 1234     'p9' => array(
  1235. 1235       'type' => 'int',
  1236. 1236       'unsigned' => TRUE,
  1237. 1237       'not null' => TRUE,
  1238. 1238       'default' => 0,
  1239. 1239     ),
  1240. 1240     'updated' => array(
  1241. 1241       'type' => 'int',
  1242. 1242       'not null' => TRUE,
  1243. 1243       'default' => 0,
  1244. 1244       'size' => 'small',
  1245. 1245     ),
  1246. 1246   ),
  1247. 1247   'indexes' => array(
  1248. 1248     'path_menu' => array(
  1249. 1249       array(
  1250. 1250         'link_path',
  1251. 1251         128,
  1252. 1252       ),
  1253. 1253       'menu_name',
  1254. 1254     ),
  1255. 1255     'menu_plid_expand_child' => array(
  1256. 1256       'menu_name',
  1257. 1257       'plid',
  1258. 1258       'expanded',
  1259. 1259       'has_children',
  1260. 1260     ),
  1261. 1261     'menu_parents' => array(
  1262. 1262       'menu_name',
  1263. 1263       'p1',
  1264. 1264       'p2',
  1265. 1265       'p3',
  1266. 1266       'p4',
  1267. 1267       'p5',
  1268. 1268       'p6',
  1269. 1269       'p7',
  1270. 1270       'p8',
  1271. 1271       'p9',
  1272. 1272     ),
  1273. 1273     'router_path' => array(
  1274. 1274       array(
  1275. 1275         'router_path',
  1276. 1276         128,
  1277. 1277       ),
  1278. 1278     ),
  1279. 1279   ),
  1280. 1280   'primary key' => array(
  1281. 1281     'mlid',
  1282. 1282   ),
  1283. 1283   'module' => 'system',
  1284. 1284   'name' => 'menu_links',
  1285. 1285 ));
  1286. 1286 db_insert('menu_links')->fields(array(
  1287. 1287   'menu_name',
  1288. 1288   'mlid',
  1289. 1289   'plid',
  1290. 1290   'link_path',
  1291. 1291   'router_path',
  1292. 1292   'link_title',
  1293. 1293   'options',
  1294. 1294   'module',
  1295. 1295   'hidden',
  1296. 1296   'external',
  1297. 1297   'has_children',
  1298. 1298   'expanded',
  1299. 1299   'weight',
  1300. 1300   'depth',
  1301. 1301   'customized',
  1302. 1302   'p1',
  1303. 1303   'p2',
  1304. 1304   'p3',
  1305. 1305   'p4',
  1306. 1306   'p5',
  1307. 1307   'p6',
  1308. 1308   'p7',
  1309. 1309   'p8',
  1310. 1310   'p9',
  1311. 1311   'updated',
  1312. 1312 ))
  1313. 1313 ->values(array(
  1314. 1314   'menu_name' => 'navigation',
  1315. 1315   'mlid' => '1',
  1316. 1316   'plid' => '0',
  1317. 1317   'link_path' => 'batch',
  1318. 1318   'router_path' => 'batch',
  1319. 1319   'link_title' => '',
  1320. 1320   'options' => 'a:0:{}',
  1321. 1321   'module' => 'system',
  1322. 1322   'hidden' => '-1',
  1323. 1323   'external' => '0',
  1324. 1324   'has_children' => '0',
  1325. 1325   'expanded' => '0',
  1326. 1326   'weight' => '0',
  1327. 1327   'depth' => '1',
  1328. 1328   'customized' => '0',
  1329. 1329   'p1' => '1',
  1330. 1330   'p2' => '0',
  1331. 1331   'p3' => '0',
  1332. 1332   'p4' => '0',
  1333. 1333   'p5' => '0',
  1334. 1334   'p6' => '0',
  1335. 1335   'p7' => '0',
  1336. 1336   'p8' => '0',
  1337. 1337   'p9' => '0',
  1338. 1338   'updated' => '0',
  1339. 1339 ))
  1340. 1340 ->values(array(
  1341. 1341   'menu_name' => 'navigation',
  1342. 1342   'mlid' => '2',
  1343. 1343   'plid' => '0',
  1344. 1344   'link_path' => 'admin',
  1345. 1345   'router_path' => 'admin',
  1346. 1346   'link_title' => 'Administer',
  1347. 1347   'options' => 'a:0:{}',
  1348. 1348   'module' => 'system',
  1349. 1349   'hidden' => '0',
  1350. 1350   'external' => '0',
  1351. 1351   'has_children' => '1',
  1352. 1352   'expanded' => '0',
  1353. 1353   'weight' => '9',
  1354. 1354   'depth' => '1',
  1355. 1355   'customized' => '0',
  1356. 1356   'p1' => '2',
  1357. 1357   'p2' => '0',
  1358. 1358   'p3' => '0',
  1359. 1359   'p4' => '0',
  1360. 1360   'p5' => '0',
  1361. 1361   'p6' => '0',
  1362. 1362   'p7' => '0',
  1363. 1363   'p8' => '0',
  1364. 1364   'p9' => '0',
  1365. 1365   'updated' => '0',
  1366. 1366 ))
  1367. 1367 ->values(array(
  1368. 1368   'menu_name' => 'navigation',
  1369. 1369   'mlid' => '3',
  1370. 1370   'plid' => '0',
  1371. 1371   'link_path' => 'node',
  1372. 1372   'router_path' => 'node',
  1373. 1373   'link_title' => 'Content',
  1374. 1374   'options' => 'a:0:{}',
  1375. 1375   'module' => 'system',
  1376. 1376   'hidden' => '-1',
  1377. 1377   'external' => '0',
  1378. 1378   'has_children' => '0',
  1379. 1379   'expanded' => '0',
  1380. 1380   'weight' => '0',
  1381. 1381   'depth' => '1',
  1382. 1382   'customized' => '0',
  1383. 1383   'p1' => '3',
  1384. 1384   'p2' => '0',
  1385. 1385   'p3' => '0',
  1386. 1386   'p4' => '0',
  1387. 1387   'p5' => '0',
  1388. 1388   'p6' => '0',
  1389. 1389   'p7' => '0',
  1390. 1390   'p8' => '0',
  1391. 1391   'p9' => '0',
  1392. 1392   'updated' => '0',
  1393. 1393 ))
  1394. 1394 ->values(array(
  1395. 1395   'menu_name' => 'navigation',
  1396. 1396   'mlid' => '4',
  1397. 1397   'plid' => '0',
  1398. 1398   'link_path' => 'logout',
  1399. 1399   'router_path' => 'logout',
  1400. 1400   'link_title' => 'Log out',
  1401. 1401   'options' => 'a:0:{}',
  1402. 1402   'module' => 'system',
  1403. 1403   'hidden' => '0',
  1404. 1404   'external' => '0',
  1405. 1405   'has_children' => '0',
  1406. 1406   'expanded' => '0',
  1407. 1407   'weight' => '10',
  1408. 1408   'depth' => '1',
  1409. 1409   'customized' => '0',
  1410. 1410   'p1' => '4',
  1411. 1411   'p2' => '0',
  1412. 1412   'p3' => '0',
  1413. 1413   'p4' => '0',
  1414. 1414   'p5' => '0',
  1415. 1415   'p6' => '0',
  1416. 1416   'p7' => '0',
  1417. 1417   'p8' => '0',
  1418. 1418   'p9' => '0',
  1419. 1419   'updated' => '0',
  1420. 1420 ))
  1421. 1421 ->values(array(
  1422. 1422   'menu_name' => 'navigation',
  1423. 1423   'mlid' => '5',
  1424. 1424   'plid' => '0',
  1425. 1425   'link_path' => 'rss.xml',
  1426. 1426   'router_path' => 'rss.xml',
  1427. 1427   'link_title' => 'RSS feed',
  1428. 1428   'options' => 'a:0:{}',
  1429. 1429   'module' => 'system',
  1430. 1430   'hidden' => '-1',
  1431. 1431   'external' => '0',
  1432. 1432   'has_children' => '0',
  1433. 1433   'expanded' => '0',
  1434. 1434   'weight' => '0',
  1435. 1435   'depth' => '1',
  1436. 1436   'customized' => '0',
  1437. 1437   'p1' => '5',
  1438. 1438   'p2' => '0',
  1439. 1439   'p3' => '0',
  1440. 1440   'p4' => '0',
  1441. 1441   'p5' => '0',
  1442. 1442   'p6' => '0',
  1443. 1443   'p7' => '0',
  1444. 1444   'p8' => '0',
  1445. 1445   'p9' => '0',
  1446. 1446   'updated' => '0',
  1447. 1447 ))
  1448. 1448 ->values(array(
  1449. 1449   'menu_name' => 'navigation',
  1450. 1450   'mlid' => '6',
  1451. 1451   'plid' => '0',
  1452. 1452   'link_path' => 'user',
  1453. 1453   'router_path' => 'user',
  1454. 1454   'link_title' => 'User account',
  1455. 1455   'options' => 'a:0:{}',
  1456. 1456   'module' => 'system',
  1457. 1457   'hidden' => '-1',
  1458. 1458   'external' => '0',
  1459. 1459   'has_children' => '0',
  1460. 1460   'expanded' => '0',
  1461. 1461   'weight' => '0',
  1462. 1462   'depth' => '1',
  1463. 1463   'customized' => '0',
  1464. 1464   'p1' => '6',
  1465. 1465   'p2' => '0',
  1466. 1466   'p3' => '0',
  1467. 1467   'p4' => '0',
  1468. 1468   'p5' => '0',
  1469. 1469   'p6' => '0',
  1470. 1470   'p7' => '0',
  1471. 1471   'p8' => '0',
  1472. 1472   'p9' => '0',
  1473. 1473   'updated' => '0',
  1474. 1474 ))
  1475. 1475 ->values(array(
  1476. 1476   'menu_name' => 'navigation',
  1477. 1477   'mlid' => '7',
  1478. 1478   'plid' => '0',
  1479. 1479   'link_path' => 'node/%',
  1480. 1480   'router_path' => 'node/%',
  1481. 1481   'link_title' => '',
  1482. 1482   'options' => 'a:0:{}',
  1483. 1483   'module' => 'system',
  1484. 1484   'hidden' => '-1',
  1485. 1485   'external' => '0',
  1486. 1486   'has_children' => '0',
  1487. 1487   'expanded' => '0',
  1488. 1488   'weight' => '0',
  1489. 1489   'depth' => '1',
  1490. 1490   'customized' => '0',
  1491. 1491   'p1' => '7',
  1492. 1492   'p2' => '0',
  1493. 1493   'p3' => '0',
  1494. 1494   'p4' => '0',
  1495. 1495   'p5' => '0',
  1496. 1496   'p6' => '0',
  1497. 1497   'p7' => '0',
  1498. 1498   'p8' => '0',
  1499. 1499   'p9' => '0',
  1500. 1500   'updated' => '0',
  1501. 1501 ))
  1502. 1502 ->values(array(
  1503. 1503   'menu_name' => 'navigation',
  1504. 1504   'mlid' => '8',
  1505. 1505   'plid' => '2',
  1506. 1506   'link_path' => 'admin/compact',
  1507. 1507   'router_path' => 'admin/compact',
  1508. 1508   'link_title' => 'Compact mode',
  1509. 1509   'options' => 'a:0:{}',
  1510. 1510   'module' => 'system',
  1511. 1511   'hidden' => '-1',
  1512. 1512   'external' => '0',
  1513. 1513   'has_children' => '0',
  1514. 1514   'expanded' => '0',
  1515. 1515   'weight' => '0',
  1516. 1516   'depth' => '2',
  1517. 1517   'customized' => '0',
  1518. 1518   'p1' => '2',
  1519. 1519   'p2' => '8',
  1520. 1520   'p3' => '0',
  1521. 1521   'p4' => '0',
  1522. 1522   'p5' => '0',
  1523. 1523   'p6' => '0',
  1524. 1524   'p7' => '0',
  1525. 1525   'p8' => '0',
  1526. 1526   'p9' => '0',
  1527. 1527   'updated' => '0',
  1528. 1528 ))
  1529. 1529 ->values(array(
  1530. 1530   'menu_name' => 'navigation',
  1531. 1531   'mlid' => '9',
  1532. 1532   'plid' => '0',
  1533. 1533   'link_path' => 'filter/tips',
  1534. 1534   'router_path' => 'filter/tips',
  1535. 1535   'link_title' => 'Compose tips',
  1536. 1536   'options' => 'a:0:{}',
  1537. 1537   'module' => 'system',
  1538. 1538   'hidden' => '1',
  1539. 1539   'external' => '0',
  1540. 1540   'has_children' => '0',
  1541. 1541   'expanded' => '0',
  1542. 1542   'weight' => '0',
  1543. 1543   'depth' => '1',
  1544. 1544   'customized' => '0',
  1545. 1545   'p1' => '9',
  1546. 1546   'p2' => '0',
  1547. 1547   'p3' => '0',
  1548. 1548   'p4' => '0',
  1549. 1549   'p5' => '0',
  1550. 1550   'p6' => '0',
  1551. 1551   'p7' => '0',
  1552. 1552   'p8' => '0',
  1553. 1553   'p9' => '0',
  1554. 1554   'updated' => '0',
  1555. 1555 ))
  1556. 1556 ->values(array(
  1557. 1557   'menu_name' => 'navigation',
  1558. 1558   'mlid' => '10',
  1559. 1559   'plid' => '2',
  1560. 1560   'link_path' => 'admin/content',
  1561. 1561   'router_path' => 'admin/content',
  1562. 1562   'link_title' => 'Content management',
  1563. 1563   'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:27:\"Manage your site's content.\";}}",
  1564. 1564   'module' => 'system',
  1565. 1565   'hidden' => '0',
  1566. 1566   'external' => '0',
  1567. 1567   'has_children' => '1',
  1568. 1568   'expanded' => '0',
  1569. 1569   'weight' => '-10',
  1570. 1570   'depth' => '2',
  1571. 1571   'customized' => '0',
  1572. 1572   'p1' => '2',
  1573. 1573   'p2' => '10',
  1574. 1574   'p3' => '0',
  1575. 1575   'p4' => '0',
  1576. 1576   'p5' => '0',
  1577. 1577   'p6' => '0',
  1578. 1578   'p7' => '0',
  1579. 1579   'p8' => '0',
  1580. 1580   'p9' => '0',
  1581. 1581   'updated' => '0',
  1582. 1582 ))
  1583. 1583 ->values(array(
  1584. 1584   'menu_name' => 'navigation',
  1585. 1585   'mlid' => '11',
  1586. 1586   'plid' => '0',
  1587. 1587   'link_path' => 'node/add',
  1588. 1588   'router_path' => 'node/add',
  1589. 1589   'link_title' => 'Create content',
  1590. 1590   'options' => 'a:0:{}',
  1591. 1591   'module' => 'system',
  1592. 1592   'hidden' => '0',
  1593. 1593   'external' => '0',
  1594. 1594   'has_children' => '1',
  1595. 1595   'expanded' => '0',
  1596. 1596   'weight' => '1',
  1597. 1597   'depth' => '1',
  1598. 1598   'customized' => '0',
  1599. 1599   'p1' => '11',
  1600. 1600   'p2' => '0',
  1601. 1601   'p3' => '0',
  1602. 1602   'p4' => '0',
  1603. 1603   'p5' => '0',
  1604. 1604   'p6' => '0',
  1605. 1605   'p7' => '0',
  1606. 1606   'p8' => '0',
  1607. 1607   'p9' => '0',
  1608. 1608   'updated' => '0',
  1609. 1609 ))
  1610. 1610 ->values(array(
  1611. 1611   'menu_name' => 'navigation',
  1612. 1612   'mlid' => '12',
  1613. 1613   'plid' => '0',
  1614. 1614   'link_path' => 'system/files',
  1615. 1615   'router_path' => 'system/files',
  1616. 1616   'link_title' => 'File download',
  1617. 1617   'options' => 'a:0:{}',
  1618. 1618   'module' => 'system',
  1619. 1619   'hidden' => '-1',
  1620. 1620   'external' => '0',
  1621. 1621   'has_children' => '0',
  1622. 1622   'expanded' => '0',
  1623. 1623   'weight' => '0',
  1624. 1624   'depth' => '1',
  1625. 1625   'customized' => '0',
  1626. 1626   'p1' => '12',
  1627. 1627   'p2' => '0',
  1628. 1628   'p3' => '0',
  1629. 1629   'p4' => '0',
  1630. 1630   'p5' => '0',
  1631. 1631   'p6' => '0',
  1632. 1632   'p7' => '0',
  1633. 1633   'p8' => '0',
  1634. 1634   'p9' => '0',
  1635. 1635   'updated' => '0',
  1636. 1636 ))
  1637. 1637 ->values(array(
  1638. 1638   'menu_name' => 'navigation',
  1639. 1639   'mlid' => '13',
  1640. 1640   'plid' => '2',
  1641. 1641   'link_path' => 'admin/reports',
  1642. 1642   'router_path' => 'admin/reports',
  1643. 1643   'link_title' => 'Reports',
  1644. 1644   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:59:"View reports from system logs and other status information.";}}',
  1645. 1645   'module' => 'system',
  1646. 1646   'hidden' => '0',
  1647. 1647   'external' => '0',
  1648. 1648   'has_children' => '1',
  1649. 1649   'expanded' => '0',
  1650. 1650   'weight' => '5',
  1651. 1651   'depth' => '2',
  1652. 1652   'customized' => '0',
  1653. 1653   'p1' => '2',
  1654. 1654   'p2' => '13',
  1655. 1655   'p3' => '0',
  1656. 1656   'p4' => '0',
  1657. 1657   'p5' => '0',
  1658. 1658   'p6' => '0',
  1659. 1659   'p7' => '0',
  1660. 1660   'p8' => '0',
  1661. 1661   'p9' => '0',
  1662. 1662   'updated' => '0',
  1663. 1663 ))
  1664. 1664 ->values(array(
  1665. 1665   'menu_name' => 'navigation',
  1666. 1666   'mlid' => '14',
  1667. 1667   'plid' => '2',
  1668. 1668   'link_path' => 'admin/build',
  1669. 1669   'router_path' => 'admin/build',
  1670. 1670   'link_title' => 'Site building',
  1671. 1671   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:38:"Control how your site looks and feels.";}}',
  1672. 1672   'module' => 'system',
  1673. 1673   'hidden' => '0',
  1674. 1674   'external' => '0',
  1675. 1675   'has_children' => '1',
  1676. 1676   'expanded' => '0',
  1677. 1677   'weight' => '-10',
  1678. 1678   'depth' => '2',
  1679. 1679   'customized' => '0',
  1680. 1680   'p1' => '2',
  1681. 1681   'p2' => '14',
  1682. 1682   'p3' => '0',
  1683. 1683   'p4' => '0',
  1684. 1684   'p5' => '0',
  1685. 1685   'p6' => '0',
  1686. 1686   'p7' => '0',
  1687. 1687   'p8' => '0',
  1688. 1688   'p9' => '0',
  1689. 1689   'updated' => '0',
  1690. 1690 ))
  1691. 1691 ->values(array(
  1692. 1692   'menu_name' => 'navigation',
  1693. 1693   'mlid' => '15',
  1694. 1694   'plid' => '2',
  1695. 1695   'link_path' => 'admin/settings',
  1696. 1696   'router_path' => 'admin/settings',
  1697. 1697   'link_title' => 'Site configuration',
  1698. 1698   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:40:"Adjust basic site configuration options.";}}',
  1699. 1699   'module' => 'system',
  1700. 1700   'hidden' => '0',
  1701. 1701   'external' => '0',
  1702. 1702   'has_children' => '1',
  1703. 1703   'expanded' => '0',
  1704. 1704   'weight' => '-5',
  1705. 1705   'depth' => '2',
  1706. 1706   'customized' => '0',
  1707. 1707   'p1' => '2',
  1708. 1708   'p2' => '15',
  1709. 1709   'p3' => '0',
  1710. 1710   'p4' => '0',
  1711. 1711   'p5' => '0',
  1712. 1712   'p6' => '0',
  1713. 1713   'p7' => '0',
  1714. 1714   'p8' => '0',
  1715. 1715   'p9' => '0',
  1716. 1716   'updated' => '0',
  1717. 1717 ))
  1718. 1718 ->values(array(
  1719. 1719   'menu_name' => 'navigation',
  1720. 1720   'mlid' => '16',
  1721. 1721   'plid' => '0',
  1722. 1722   'link_path' => 'user/autocomplete',
  1723. 1723   'router_path' => 'user/autocomplete',
  1724. 1724   'link_title' => 'User autocomplete',
  1725. 1725   'options' => 'a:0:{}',
  1726. 1726   'module' => 'system',
  1727. 1727   'hidden' => '-1',
  1728. 1728   'external' => '0',
  1729. 1729   'has_children' => '0',
  1730. 1730   'expanded' => '0',
  1731. 1731   'weight' => '0',
  1732. 1732   'depth' => '1',
  1733. 1733   'customized' => '0',
  1734. 1734   'p1' => '16',
  1735. 1735   'p2' => '0',
  1736. 1736   'p3' => '0',
  1737. 1737   'p4' => '0',
  1738. 1738   'p5' => '0',
  1739. 1739   'p6' => '0',
  1740. 1740   'p7' => '0',
  1741. 1741   'p8' => '0',
  1742. 1742   'p9' => '0',
  1743. 1743   'updated' => '0',
  1744. 1744 ))
  1745. 1745 ->values(array(
  1746. 1746   'menu_name' => 'navigation',
  1747. 1747   'mlid' => '17',
  1748. 1748   'plid' => '2',
  1749. 1749   'link_path' => 'admin/user',
  1750. 1750   'router_path' => 'admin/user',
  1751. 1751   'link_title' => 'User management',
  1752. 1752   'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:61:\"Manage your site's users, groups and access to site features.\";}}",
  1753. 1753   'module' => 'system',
  1754. 1754   'hidden' => '0',
  1755. 1755   'external' => '0',
  1756. 1756   'has_children' => '1',
  1757. 1757   'expanded' => '0',
  1758. 1758   'weight' => '0',
  1759. 1759   'depth' => '2',
  1760. 1760   'customized' => '0',
  1761. 1761   'p1' => '2',
  1762. 1762   'p2' => '17',
  1763. 1763   'p3' => '0',
  1764. 1764   'p4' => '0',
  1765. 1765   'p5' => '0',
  1766. 1766   'p6' => '0',
  1767. 1767   'p7' => '0',
  1768. 1768   'p8' => '0',
  1769. 1769   'p9' => '0',
  1770. 1770   'updated' => '0',
  1771. 1771 ))
  1772. 1772 ->values(array(
  1773. 1773   'menu_name' => 'navigation',
  1774. 1774   'mlid' => '18',
  1775. 1775   'plid' => '0',
  1776. 1776   'link_path' => 'user/%',
  1777. 1777   'router_path' => 'user/%',
  1778. 1778   'link_title' => 'My account',
  1779. 1779   'options' => 'a:0:{}',
  1780. 1780   'module' => 'system',
  1781. 1781   'hidden' => '0',
  1782. 1782   'external' => '0',
  1783. 1783   'has_children' => '0',
  1784. 1784   'expanded' => '0',
  1785. 1785   'weight' => '0',
  1786. 1786   'depth' => '1',
  1787. 1787   'customized' => '0',
  1788. 1788   'p1' => '18',
  1789. 1789   'p2' => '0',
  1790. 1790   'p3' => '0',
  1791. 1791   'p4' => '0',
  1792. 1792   'p5' => '0',
  1793. 1793   'p6' => '0',
  1794. 1794   'p7' => '0',
  1795. 1795   'p8' => '0',
  1796. 1796   'p9' => '0',
  1797. 1797   'updated' => '0',
  1798. 1798 ))
  1799. 1799 ->values(array(
  1800. 1800   'menu_name' => 'navigation',
  1801. 1801   'mlid' => '19',
  1802. 1802   'plid' => '17',
  1803. 1803   'link_path' => 'admin/user/rules',
  1804. 1804   'router_path' => 'admin/user/rules',
  1805. 1805   'link_title' => 'Access rules',
  1806. 1806   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:80:"List and create rules to disallow usernames, e-mail addresses, and IP addresses.";}}',
  1807. 1807   'module' => 'system',
  1808. 1808   'hidden' => '0',
  1809. 1809   'external' => '0',
  1810. 1810   'has_children' => '0',
  1811. 1811   'expanded' => '0',
  1812. 1812   'weight' => '0',
  1813. 1813   'depth' => '3',
  1814. 1814   'customized' => '0',
  1815. 1815   'p1' => '2',
  1816. 1816   'p2' => '17',
  1817. 1817   'p3' => '19',
  1818. 1818   'p4' => '0',
  1819. 1819   'p5' => '0',
  1820. 1820   'p6' => '0',
  1821. 1821   'p7' => '0',
  1822. 1822   'p8' => '0',
  1823. 1823   'p9' => '0',
  1824. 1824   'updated' => '0',
  1825. 1825 ))
  1826. 1826 ->values(array(
  1827. 1827   'menu_name' => 'navigation',
  1828. 1828   'mlid' => '20',
  1829. 1829   'plid' => '15',
  1830. 1830   'link_path' => 'admin/settings/actions',
  1831. 1831   'router_path' => 'admin/settings/actions',
  1832. 1832   'link_title' => 'Actions',
  1833. 1833   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:41:"Manage the actions defined for your site.";}}',
  1834. 1834   'module' => 'system',
  1835. 1835   'hidden' => '0',
  1836. 1836   'external' => '0',
  1837. 1837   'has_children' => '0',
  1838. 1838   'expanded' => '0',
  1839. 1839   'weight' => '0',
  1840. 1840   'depth' => '3',
  1841. 1841   'customized' => '0',
  1842. 1842   'p1' => '2',
  1843. 1843   'p2' => '15',
  1844. 1844   'p3' => '20',
  1845. 1845   'p4' => '0',
  1846. 1846   'p5' => '0',
  1847. 1847   'p6' => '0',
  1848. 1848   'p7' => '0',
  1849. 1849   'p8' => '0',
  1850. 1850   'p9' => '0',
  1851. 1851   'updated' => '0',
  1852. 1852 ))
  1853. 1853 ->values(array(
  1854. 1854   'menu_name' => 'navigation',
  1855. 1855   'mlid' => '21',
  1856. 1856   'plid' => '15',
  1857. 1857   'link_path' => 'admin/settings/admin',
  1858. 1858   'router_path' => 'admin/settings/admin',
  1859. 1859   'link_title' => 'Administration theme',
  1860. 1860   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:55:"Settings for how your administrative pages should look.";}}',
  1861. 1861   'module' => 'system',
  1862. 1862   'hidden' => '0',
  1863. 1863   'external' => '0',
  1864. 1864   'has_children' => '0',
  1865. 1865   'expanded' => '0',
  1866. 1866   'weight' => '0',
  1867. 1867   'depth' => '3',
  1868. 1868   'customized' => '0',
  1869. 1869   'p1' => '2',
  1870. 1870   'p2' => '15',
  1871. 1871   'p3' => '21',
  1872. 1872   'p4' => '0',
  1873. 1873   'p5' => '0',
  1874. 1874   'p6' => '0',
  1875. 1875   'p7' => '0',
  1876. 1876   'p8' => '0',
  1877. 1877   'p9' => '0',
  1878. 1878   'updated' => '0',
  1879. 1879 ))
  1880. 1880 ->values(array(
  1881. 1881   'menu_name' => 'navigation',
  1882. 1882   'mlid' => '22',
  1883. 1883   'plid' => '14',
  1884. 1884   'link_path' => 'admin/build/block',
  1885. 1885   'router_path' => 'admin/build/block',
  1886. 1886   'link_title' => 'Blocks',
  1887. 1887   'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:79:\"Configure what block content appears in your site's sidebars and other regions.\";}}",
  1888. 1888   'module' => 'system',
  1889. 1889   'hidden' => '0',
  1890. 1890   'external' => '0',
  1891. 1891   'has_children' => '0',
  1892. 1892   'expanded' => '0',
  1893. 1893   'weight' => '0',
  1894. 1894   'depth' => '3',
  1895. 1895   'customized' => '0',
  1896. 1896   'p1' => '2',
  1897. 1897   'p2' => '14',
  1898. 1898   'p3' => '22',
  1899. 1899   'p4' => '0',
  1900. 1900   'p5' => '0',
  1901. 1901   'p6' => '0',
  1902. 1902   'p7' => '0',
  1903. 1903   'p8' => '0',
  1904. 1904   'p9' => '0',
  1905. 1905   'updated' => '0',
  1906. 1906 ))
  1907. 1907 ->values(array(
  1908. 1908   'menu_name' => 'navigation',
  1909. 1909   'mlid' => '23',
  1910. 1910   'plid' => '15',
  1911. 1911   'link_path' => 'admin/settings/clean-urls',
  1912. 1912   'router_path' => 'admin/settings/clean-urls',
  1913. 1913   'link_title' => 'Clean URLs',
  1914. 1914   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:43:"Enable or disable clean URLs for your site.";}}',
  1915. 1915   'module' => 'system',
  1916. 1916   'hidden' => '0',
  1917. 1917   'external' => '0',
  1918. 1918   'has_children' => '0',
  1919. 1919   'expanded' => '0',
  1920. 1920   'weight' => '0',
  1921. 1921   'depth' => '3',
  1922. 1922   'customized' => '0',
  1923. 1923   'p1' => '2',
  1924. 1924   'p2' => '15',
  1925. 1925   'p3' => '23',
  1926. 1926   'p4' => '0',
  1927. 1927   'p5' => '0',
  1928. 1928   'p6' => '0',
  1929. 1929   'p7' => '0',
  1930. 1930   'p8' => '0',
  1931. 1931   'p9' => '0',
  1932. 1932   'updated' => '0',
  1933. 1933 ))
  1934. 1934 ->values(array(
  1935. 1935   'menu_name' => 'navigation',
  1936. 1936   'mlid' => '24',
  1937. 1937   'plid' => '10',
  1938. 1938   'link_path' => 'admin/content/node',
  1939. 1939   'router_path' => 'admin/content/node',
  1940. 1940   'link_title' => 'Content',
  1941. 1941   'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:43:\"View, edit, and delete your site's content.\";}}",
  1942. 1942   'module' => 'system',
  1943. 1943   'hidden' => '0',
  1944. 1944   'external' => '0',
  1945. 1945   'has_children' => '0',
  1946. 1946   'expanded' => '0',
  1947. 1947   'weight' => '0',
  1948. 1948   'depth' => '3',
  1949. 1949   'customized' => '0',
  1950. 1950   'p1' => '2',
  1951. 1951   'p2' => '10',
  1952. 1952   'p3' => '24',
  1953. 1953   'p4' => '0',
  1954. 1954   'p5' => '0',
  1955. 1955   'p6' => '0',
  1956. 1956   'p7' => '0',
  1957. 1957   'p8' => '0',
  1958. 1958   'p9' => '0',
  1959. 1959   'updated' => '0',
  1960. 1960 ))
  1961. 1961 ->values(array(
  1962. 1962   'menu_name' => 'navigation',
  1963. 1963   'mlid' => '25',
  1964. 1964   'plid' => '10',
  1965. 1965   'link_path' => 'admin/content/types',
  1966. 1966   'router_path' => 'admin/content/types',
  1967. 1967   'link_title' => 'Content types',
  1968. 1968   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:82:"Manage posts by content type, including default status, front page promotion, etc.";}}',
  1969. 1969   'module' => 'system',
  1970. 1970   'hidden' => '0',
  1971. 1971   'external' => '0',
  1972. 1972   'has_children' => '0',
  1973. 1973   'expanded' => '0',
  1974. 1974   'weight' => '0',
  1975. 1975   'depth' => '3',
  1976. 1976   'customized' => '0',
  1977. 1977   'p1' => '2',
  1978. 1978   'p2' => '10',
  1979. 1979   'p3' => '25',
  1980. 1980   'p4' => '0',
  1981. 1981   'p5' => '0',
  1982. 1982   'p6' => '0',
  1983. 1983   'p7' => '0',
  1984. 1984   'p8' => '0',
  1985. 1985   'p9' => '0',
  1986. 1986   'updated' => '0',
  1987. 1987 ))
  1988. 1988 ->values(array(
  1989. 1989   'menu_name' => 'navigation',
  1990. 1990   'mlid' => '26',
  1991. 1991   'plid' => '15',
  1992. 1992   'link_path' => 'admin/settings/date-time',
  1993. 1993   'router_path' => 'admin/settings/date-time',
  1994. 1994   'link_title' => 'Date and time',
  1995. 1995   'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:89:\"Settings for how Drupal displays date and time, as well as the system's default timezone.\";}}",
  1996. 1996   'module' => 'system',
  1997. 1997   'hidden' => '0',
  1998. 1998   'external' => '0',
  1999. 1999   'has_children' => '0',
  2000. 2000   'expanded' => '0',
  2001. 2001   'weight' => '0',
  2002. 2002   'depth' => '3',
  2003. 2003   'customized' => '0',
  2004. 2004   'p1' => '2',
  2005. 2005   'p2' => '15',
  2006. 2006   'p3' => '26',
  2007. 2007   'p4' => '0',
  2008. 2008   'p5' => '0',
  2009. 2009   'p6' => '0',
  2010. 2010   'p7' => '0',
  2011. 2011   'p8' => '0',
  2012. 2012   'p9' => '0',
  2013. 2013   'updated' => '0',
  2014. 2014 ))
  2015. 2015 ->values(array(
  2016. 2016   'menu_name' => 'navigation',
  2017. 2017   'mlid' => '27',
  2018. 2018   'plid' => '0',
  2019. 2019   'link_path' => 'node/%/delete',
  2020. 2020   'router_path' => 'node/%/delete',
  2021. 2021   'link_title' => 'Delete',
  2022. 2022   'options' => 'a:0:{}',
  2023. 2023   'module' => 'system',
  2024. 2024   'hidden' => '-1',
  2025. 2025   'external' => '0',
  2026. 2026   'has_children' => '0',
  2027. 2027   'expanded' => '0',
  2028. 2028   'weight' => '1',
  2029. 2029   'depth' => '1',
  2030. 2030   'customized' => '0',
  2031. 2031   'p1' => '27',
  2032. 2032   'p2' => '0',
  2033. 2033   'p3' => '0',
  2034. 2034   'p4' => '0',
  2035. 2035   'p5' => '0',
  2036. 2036   'p6' => '0',
  2037. 2037   'p7' => '0',
  2038. 2038   'p8' => '0',
  2039. 2039   'p9' => '0',
  2040. 2040   'updated' => '0',
  2041. 2041 ))
  2042. 2042 ->values(array(
  2043. 2043   'menu_name' => 'navigation',
  2044. 2044   'mlid' => '28',
  2045. 2045   'plid' => '18',
  2046. 2046   'link_path' => 'user/%/delete',
  2047. 2047   'router_path' => 'user/%/delete',
  2048. 2048   'link_title' => 'Delete',
  2049. 2049   'options' => 'a:0:{}',
  2050. 2050   'module' => 'system',
  2051. 2051   'hidden' => '-1',
  2052. 2052   'external' => '0',
  2053. 2053   'has_children' => '0',
  2054. 2054   'expanded' => '0',
  2055. 2055   'weight' => '0',
  2056. 2056   'depth' => '2',
  2057. 2057   'customized' => '0',
  2058. 2058   'p1' => '18',
  2059. 2059   'p2' => '28',
  2060. 2060   'p3' => '0',
  2061. 2061   'p4' => '0',
  2062. 2062   'p5' => '0',
  2063. 2063   'p6' => '0',
  2064. 2064   'p7' => '0',
  2065. 2065   'p8' => '0',
  2066. 2066   'p9' => '0',
  2067. 2067   'updated' => '0',
  2068. 2068 ))
  2069. 2069 ->values(array(
  2070. 2070   'menu_name' => 'navigation',
  2071. 2071   'mlid' => '29',
  2072. 2072   'plid' => '15',
  2073. 2073   'link_path' => 'admin/settings/error-reporting',
  2074. 2074   'router_path' => 'admin/settings/error-reporting',
  2075. 2075   'link_title' => 'Error reporting',
  2076. 2076   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:93:"Control how Drupal deals with errors including 403/404 errors as well as PHP error reporting.";}}',
  2077. 2077   'module' => 'system',
  2078. 2078   'hidden' => '0',
  2079. 2079   'external' => '0',
  2080. 2080   'has_children' => '0',
  2081. 2081   'expanded' => '0',
  2082. 2082   'weight' => '0',
  2083. 2083   'depth' => '3',
  2084. 2084   'customized' => '0',
  2085. 2085   'p1' => '2',
  2086. 2086   'p2' => '15',
  2087. 2087   'p3' => '29',
  2088. 2088   'p4' => '0',
  2089. 2089   'p5' => '0',
  2090. 2090   'p6' => '0',
  2091. 2091   'p7' => '0',
  2092. 2092   'p8' => '0',
  2093. 2093   'p9' => '0',
  2094. 2094   'updated' => '0',
  2095. 2095 ))
  2096. 2096 ->values(array(
  2097. 2097   'menu_name' => 'navigation',
  2098. 2098   'mlid' => '30',
  2099. 2099   'plid' => '15',
  2100. 2100   'link_path' => 'admin/settings/file-system',
  2101. 2101   'router_path' => 'admin/settings/file-system',
  2102. 2102   'link_title' => 'File system',
  2103. 2103   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:68:"Tell Drupal where to store uploaded files and how they are accessed.";}}',
  2104. 2104   'module' => 'system',
  2105. 2105   'hidden' => '0',
  2106. 2106   'external' => '0',
  2107. 2107   'has_children' => '0',
  2108. 2108   'expanded' => '0',
  2109. 2109   'weight' => '0',
  2110. 2110   'depth' => '3',
  2111. 2111   'customized' => '0',
  2112. 2112   'p1' => '2',
  2113. 2113   'p2' => '15',
  2114. 2114   'p3' => '30',
  2115. 2115   'p4' => '0',
  2116. 2116   'p5' => '0',
  2117. 2117   'p6' => '0',
  2118. 2118   'p7' => '0',
  2119. 2119   'p8' => '0',
  2120. 2120   'p9' => '0',
  2121. 2121   'updated' => '0',
  2122. 2122 ))
  2123. 2123 ->values(array(
  2124. 2124   'menu_name' => 'navigation',
  2125. 2125   'mlid' => '31',
  2126. 2126   'plid' => '15',
  2127. 2127   'link_path' => 'admin/settings/image-toolkit',
  2128. 2128   'router_path' => 'admin/settings/image-toolkit',
  2129. 2129   'link_title' => 'Image toolkit',
  2130. 2130   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:74:"Choose which image toolkit to use if you have installed optional toolkits.";}}',
  2131. 2131   'module' => 'system',
  2132. 2132   'hidden' => '0',
  2133. 2133   'external' => '0',
  2134. 2134   'has_children' => '0',
  2135. 2135   'expanded' => '0',
  2136. 2136   'weight' => '0',
  2137. 2137   'depth' => '3',
  2138. 2138   'customized' => '0',
  2139. 2139   'p1' => '2',
  2140. 2140   'p2' => '15',
  2141. 2141   'p3' => '31',
  2142. 2142   'p4' => '0',
  2143. 2143   'p5' => '0',
  2144. 2144   'p6' => '0',
  2145. 2145   'p7' => '0',
  2146. 2146   'p8' => '0',
  2147. 2147   'p9' => '0',
  2148. 2148   'updated' => '0',
  2149. 2149 ))
  2150. 2150 ->values(array(
  2151. 2151   'menu_name' => 'navigation',
  2152. 2152   'mlid' => '32',
  2153. 2153   'plid' => '15',
  2154. 2154   'link_path' => 'admin/settings/filters',
  2155. 2155   'router_path' => 'admin/settings/filters',
  2156. 2156   'link_title' => 'Input formats',
  2157. 2157   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:127:"Configure how content input by users is filtered, including allowed HTML tags. Also allows enabling of module-provided filters.";}}',
  2158. 2158   'module' => 'system',
  2159. 2159   'hidden' => '0',
  2160. 2160   'external' => '0',
  2161. 2161   'has_children' => '0',
  2162. 2162   'expanded' => '0',
  2163. 2163   'weight' => '0',
  2164. 2164   'depth' => '3',
  2165. 2165   'customized' => '0',
  2166. 2166   'p1' => '2',
  2167. 2167   'p2' => '15',
  2168. 2168   'p3' => '32',
  2169. 2169   'p4' => '0',
  2170. 2170   'p5' => '0',
  2171. 2171   'p6' => '0',
  2172. 2172   'p7' => '0',
  2173. 2173   'p8' => '0',
  2174. 2174   'p9' => '0',
  2175. 2175   'updated' => '0',
  2176. 2176 ))
  2177. 2177 ->values(array(
  2178. 2178   'menu_name' => 'navigation',
  2179. 2179   'mlid' => '33',
  2180. 2180   'plid' => '15',
  2181. 2181   'link_path' => 'admin/settings/logging',
  2182. 2182   'router_path' => 'admin/settings/logging',
  2183. 2183   'link_title' => 'Logging and alerts',
  2184. 2184   'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:156:\"Settings for logging and alerts modules. Various modules can route Drupal's system events to different destination, such as syslog, database, email, ...etc.\";}}",
  2185. 2185   'module' => 'system',
  2186. 2186   'hidden' => '0',
  2187. 2187   'external' => '0',
  2188. 2188   'has_children' => '1',
  2189. 2189   'expanded' => '0',
  2190. 2190   'weight' => '0',
  2191. 2191   'depth' => '3',
  2192. 2192   'customized' => '0',
  2193. 2193   'p1' => '2',
  2194. 2194   'p2' => '15',
  2195. 2195   'p3' => '33',
  2196. 2196   'p4' => '0',
  2197. 2197   'p5' => '0',
  2198. 2198   'p6' => '0',
  2199. 2199   'p7' => '0',
  2200. 2200   'p8' => '0',
  2201. 2201   'p9' => '0',
  2202. 2202   'updated' => '0',
  2203. 2203 ))
  2204. 2204 ->values(array(
  2205. 2205   'menu_name' => 'navigation',
  2206. 2206   'mlid' => '34',
  2207. 2207   'plid' => '14',
  2208. 2208   'link_path' => 'admin/build/modules',
  2209. 2209   'router_path' => 'admin/build/modules',
  2210. 2210   'link_title' => 'Modules',
  2211. 2211   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:47:"Enable or disable add-on modules for your site.";}}',
  2212. 2212   'module' => 'system',
  2213. 2213   'hidden' => '0',
  2214. 2214   'external' => '0',
  2215. 2215   'has_children' => '0',
  2216. 2216   'expanded' => '0',
  2217. 2217   'weight' => '0',
  2218. 2218   'depth' => '3',
  2219. 2219   'customized' => '0',
  2220. 2220   'p1' => '2',
  2221. 2221   'p2' => '14',
  2222. 2222   'p3' => '34',
  2223. 2223   'p4' => '0',
  2224. 2224   'p5' => '0',
  2225. 2225   'p6' => '0',
  2226. 2226   'p7' => '0',
  2227. 2227   'p8' => '0',
  2228. 2228   'p9' => '0',
  2229. 2229   'updated' => '0',
  2230. 2230 ))
  2231. 2231 ->values(array(
  2232. 2232   'menu_name' => 'navigation',
  2233. 2233   'mlid' => '35',
  2234. 2234   'plid' => '15',
  2235. 2235   'link_path' => 'admin/settings/performance',
  2236. 2236   'router_path' => 'admin/settings/performance',
  2237. 2237   'link_title' => 'Performance',
  2238. 2238   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:101:"Enable or disable page caching for anonymous users and set CSS and JS bandwidth optimization options.";}}',
  2239. 2239   'module' => 'system',
  2240. 2240   'hidden' => '0',
  2241. 2241   'external' => '0',
  2242. 2242   'has_children' => '0',
  2243. 2243   'expanded' => '0',
  2244. 2244   'weight' => '0',
  2245. 2245   'depth' => '3',
  2246. 2246   'customized' => '0',
  2247. 2247   'p1' => '2',
  2248. 2248   'p2' => '15',
  2249. 2249   'p3' => '35',
  2250. 2250   'p4' => '0',
  2251. 2251   'p5' => '0',
  2252. 2252   'p6' => '0',
  2253. 2253   'p7' => '0',
  2254. 2254   'p8' => '0',
  2255. 2255   'p9' => '0',
  2256. 2256   'updated' => '0',
  2257. 2257 ))
  2258. 2258 ->values(array(
  2259. 2259   'menu_name' => 'navigation',
  2260. 2260   'mlid' => '36',
  2261. 2261   'plid' => '17',
  2262. 2262   'link_path' => 'admin/user/permissions',
  2263. 2263   'router_path' => 'admin/user/permissions',
  2264. 2264   'link_title' => 'Permissions',
  2265. 2265   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:64:"Determine access to features by selecting permissions for roles.";}}',
  2266. 2266   'module' => 'system',
  2267. 2267   'hidden' => '0',
  2268. 2268   'external' => '0',
  2269. 2269   'has_children' => '0',
  2270. 2270   'expanded' => '0',
  2271. 2271   'weight' => '0',
  2272. 2272   'depth' => '3',
  2273. 2273   'customized' => '0',
  2274. 2274   'p1' => '2',
  2275. 2275   'p2' => '17',
  2276. 2276   'p3' => '36',
  2277. 2277   'p4' => '0',
  2278. 2278   'p5' => '0',
  2279. 2279   'p6' => '0',
  2280. 2280   'p7' => '0',
  2281. 2281   'p8' => '0',
  2282. 2282   'p9' => '0',
  2283. 2283   'updated' => '0',
  2284. 2284 ))
  2285. 2285 ->values(array(
  2286. 2286   'menu_name' => 'navigation',
  2287. 2287   'mlid' => '37',
  2288. 2288   'plid' => '10',
  2289. 2289   'link_path' => 'admin/content/node-settings',
  2290. 2290   'router_path' => 'admin/content/node-settings',
  2291. 2291   'link_title' => 'Post settings',
  2292. 2292   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:126:"Control posting behavior, such as teaser length, requiring previews before posting, and the number of posts on the front page.";}}',
  2293. 2293   'module' => 'system',
  2294. 2294   'hidden' => '0',
  2295. 2295   'external' => '0',
  2296. 2296   'has_children' => '0',
  2297. 2297   'expanded' => '0',
  2298. 2298   'weight' => '0',
  2299. 2299   'depth' => '3',
  2300. 2300   'customized' => '0',
  2301. 2301   'p1' => '2',
  2302. 2302   'p2' => '10',
  2303. 2303   'p3' => '37',
  2304. 2304   'p4' => '0',
  2305. 2305   'p5' => '0',
  2306. 2306   'p6' => '0',
  2307. 2307   'p7' => '0',
  2308. 2308   'p8' => '0',
  2309. 2309   'p9' => '0',
  2310. 2310   'updated' => '0',
  2311. 2311 ))
  2312. 2312 ->values(array(
  2313. 2313   'menu_name' => 'navigation',
  2314. 2314   'mlid' => '38',
  2315. 2315   'plid' => '10',
  2316. 2316   'link_path' => 'admin/content/rss-publishing',
  2317. 2317   'router_path' => 'admin/content/rss-publishing',
  2318. 2318   'link_title' => 'RSS publishing',
  2319. 2319   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:92:"Configure the number of items per feed and whether feeds should be titles/teasers/full-text.";}}',
  2320. 2320   'module' => 'system',
  2321. 2321   'hidden' => '0',
  2322. 2322   'external' => '0',
  2323. 2323   'has_children' => '0',
  2324. 2324   'expanded' => '0',
  2325. 2325   'weight' => '0',
  2326. 2326   'depth' => '3',
  2327. 2327   'customized' => '0',
  2328. 2328   'p1' => '2',
  2329. 2329   'p2' => '10',
  2330. 2330   'p3' => '38',
  2331. 2331   'p4' => '0',
  2332. 2332   'p5' => '0',
  2333. 2333   'p6' => '0',
  2334. 2334   'p7' => '0',
  2335. 2335   'p8' => '0',
  2336. 2336   'p9' => '0',
  2337. 2337   'updated' => '0',
  2338. 2338 ))
  2339. 2339 ->values(array(
  2340. 2340   'menu_name' => 'navigation',
  2341. 2341   'mlid' => '39',
  2342. 2342   'plid' => '13',
  2343. 2343   'link_path' => 'admin/reports/dblog',
  2344. 2344   'router_path' => 'admin/reports/dblog',
  2345. 2345   'link_title' => 'Recent log entries',
  2346. 2346   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:43:"View events that have recently been logged.";}}',
  2347. 2347   'module' => 'system',
  2348. 2348   'hidden' => '0',
  2349. 2349   'external' => '0',
  2350. 2350   'has_children' => '0',
  2351. 2351   'expanded' => '0',
  2352. 2352   'weight' => '-1',
  2353. 2353   'depth' => '3',
  2354. 2354   'customized' => '0',
  2355. 2355   'p1' => '2',
  2356. 2356   'p2' => '13',
  2357. 2357   'p3' => '39',
  2358. 2358   'p4' => '0',
  2359. 2359   'p5' => '0',
  2360. 2360   'p6' => '0',
  2361. 2361   'p7' => '0',
  2362. 2362   'p8' => '0',
  2363. 2363   'p9' => '0',
  2364. 2364   'updated' => '0',
  2365. 2365 ))
  2366. 2366 ->values(array(
  2367. 2367   'menu_name' => 'navigation',
  2368. 2368   'mlid' => '40',
  2369. 2369   'plid' => '17',
  2370. 2370   'link_path' => 'admin/user/roles',
  2371. 2371   'router_path' => 'admin/user/roles',
  2372. 2372   'link_title' => 'Roles',
  2373. 2373   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:30:"List, edit, or add user roles.";}}',
  2374. 2374   'module' => 'system',
  2375. 2375   'hidden' => '0',
  2376. 2376   'external' => '0',
  2377. 2377   'has_children' => '0',
  2378. 2378   'expanded' => '0',
  2379. 2379   'weight' => '0',
  2380. 2380   'depth' => '3',
  2381. 2381   'customized' => '0',
  2382. 2382   'p1' => '2',
  2383. 2383   'p2' => '17',
  2384. 2384   'p3' => '40',
  2385. 2385   'p4' => '0',
  2386. 2386   'p5' => '0',
  2387. 2387   'p6' => '0',
  2388. 2388   'p7' => '0',
  2389. 2389   'p8' => '0',
  2390. 2390   'p9' => '0',
  2391. 2391   'updated' => '0',
  2392. 2392 ))
  2393. 2393 ->values(array(
  2394. 2394   'menu_name' => 'navigation',
  2395. 2395   'mlid' => '41',
  2396. 2396   'plid' => '15',
  2397. 2397   'link_path' => 'admin/settings/site-information',
  2398. 2398   'router_path' => 'admin/settings/site-information',
  2399. 2399   'link_title' => 'Site information',
  2400. 2400   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:107:"Change basic site information, such as the site name, slogan, e-mail address, mission, front page and more.";}}',
  2401. 2401   'module' => 'system',
  2402. 2402   'hidden' => '0',
  2403. 2403   'external' => '0',
  2404. 2404   'has_children' => '0',
  2405. 2405   'expanded' => '0',
  2406. 2406   'weight' => '0',
  2407. 2407   'depth' => '3',
  2408. 2408   'customized' => '0',
  2409. 2409   'p1' => '2',
  2410. 2410   'p2' => '15',
  2411. 2411   'p3' => '41',
  2412. 2412   'p4' => '0',
  2413. 2413   'p5' => '0',
  2414. 2414   'p6' => '0',
  2415. 2415   'p7' => '0',
  2416. 2416   'p8' => '0',
  2417. 2417   'p9' => '0',
  2418. 2418   'updated' => '0',
  2419. 2419 ))
  2420. 2420 ->values(array(
  2421. 2421   'menu_name' => 'navigation',
  2422. 2422   'mlid' => '42',
  2423. 2423   'plid' => '15',
  2424. 2424   'link_path' => 'admin/settings/site-maintenance',
  2425. 2425   'router_path' => 'admin/settings/site-maintenance',
  2426. 2426   'link_title' => 'Site maintenance',
  2427. 2427   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:63:"Take the site off-line for maintenance or bring it back online.";}}',
  2428. 2428   'module' => 'system',
  2429. 2429   'hidden' => '0',
  2430. 2430   'external' => '0',
  2431. 2431   'has_children' => '0',
  2432. 2432   'expanded' => '0',
  2433. 2433   'weight' => '0',
  2434. 2434   'depth' => '3',
  2435. 2435   'customized' => '0',
  2436. 2436   'p1' => '2',
  2437. 2437   'p2' => '15',
  2438. 2438   'p3' => '42',
  2439. 2439   'p4' => '0',
  2440. 2440   'p5' => '0',
  2441. 2441   'p6' => '0',
  2442. 2442   'p7' => '0',
  2443. 2443   'p8' => '0',
  2444. 2444   'p9' => '0',
  2445. 2445   'updated' => '0',
  2446. 2446 ))
  2447. 2447 ->values(array(
  2448. 2448   'menu_name' => 'navigation',
  2449. 2449   'mlid' => '43',
  2450. 2450   'plid' => '13',
  2451. 2451   'link_path' => 'admin/reports/status',
  2452. 2452   'router_path' => 'admin/reports/status',
  2453. 2453   'link_title' => 'Status report',
  2454. 2454   'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:74:\"Get a status report about your site's operation and any detected problems.\";}}",
  2455. 2455   'module' => 'system',
  2456. 2456   'hidden' => '0',
  2457. 2457   'external' => '0',
  2458. 2458   'has_children' => '0',
  2459. 2459   'expanded' => '0',
  2460. 2460   'weight' => '10',
  2461. 2461   'depth' => '3',
  2462. 2462   'customized' => '0',
  2463. 2463   'p1' => '2',
  2464. 2464   'p2' => '13',
  2465. 2465   'p3' => '43',
  2466. 2466   'p4' => '0',
  2467. 2467   'p5' => '0',
  2468. 2468   'p6' => '0',
  2469. 2469   'p7' => '0',
  2470. 2470   'p8' => '0',
  2471. 2471   'p9' => '0',
  2472. 2472   'updated' => '0',
  2473. 2473 ))
  2474. 2474 ->values(array(
  2475. 2475   'menu_name' => 'navigation',
  2476. 2476   'mlid' => '44',
  2477. 2477   'plid' => '14',
  2478. 2478   'link_path' => 'admin/build/themes',
  2479. 2479   'router_path' => 'admin/build/themes',
  2480. 2480   'link_title' => 'Themes',
  2481. 2481   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:57:"Change which theme your site uses or allows users to set.";}}',
  2482. 2482   'module' => 'system',
  2483. 2483   'hidden' => '0',
  2484. 2484   'external' => '0',
  2485. 2485   'has_children' => '0',
  2486. 2486   'expanded' => '0',
  2487. 2487   'weight' => '0',
  2488. 2488   'depth' => '3',
  2489. 2489   'customized' => '0',
  2490. 2490   'p1' => '2',
  2491. 2491   'p2' => '14',
  2492. 2492   'p3' => '44',
  2493. 2493   'p4' => '0',
  2494. 2494   'p5' => '0',
  2495. 2495   'p6' => '0',
  2496. 2496   'p7' => '0',
  2497. 2497   'p8' => '0',
  2498. 2498   'p9' => '0',
  2499. 2499   'updated' => '0',
  2500. 2500 ))
  2501. 2501 ->values(array(
  2502. 2502   'menu_name' => 'navigation',
  2503. 2503   'mlid' => '45',
  2504. 2504   'plid' => '13',
  2505. 2505   'link_path' => 'admin/reports/access-denied',
  2506. 2506   'router_path' => 'admin/reports/access-denied',
  2507. 2507   'link_title' => "Top 'access denied' errors",
  2508. 2508   'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:35:\"View 'access denied' errors (403s).\";}}",
  2509. 2509   'module' => 'system',
  2510. 2510   'hidden' => '0',
  2511. 2511   'external' => '0',
  2512. 2512   'has_children' => '0',
  2513. 2513   'expanded' => '0',
  2514. 2514   'weight' => '0',
  2515. 2515   'depth' => '3',
  2516. 2516   'customized' => '0',
  2517. 2517   'p1' => '2',
  2518. 2518   'p2' => '13',
  2519. 2519   'p3' => '45',
  2520. 2520   'p4' => '0',
  2521. 2521   'p5' => '0',
  2522. 2522   'p6' => '0',
  2523. 2523   'p7' => '0',
  2524. 2524   'p8' => '0',
  2525. 2525   'p9' => '0',
  2526. 2526   'updated' => '0',
  2527. 2527 ))
  2528. 2528 ->values(array(
  2529. 2529   'menu_name' => 'navigation',
  2530. 2530   'mlid' => '46',
  2531. 2531   'plid' => '13',
  2532. 2532   'link_path' => 'admin/reports/page-not-found',
  2533. 2533   'router_path' => 'admin/reports/page-not-found',
  2534. 2534   'link_title' => "Top 'page not found' errors",
  2535. 2535   'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:36:\"View 'page not found' errors (404s).\";}}",
  2536. 2536   'module' => 'system',
  2537. 2537   'hidden' => '0',
  2538. 2538   'external' => '0',
  2539. 2539   'has_children' => '0',
  2540. 2540   'expanded' => '0',
  2541. 2541   'weight' => '0',
  2542. 2542   'depth' => '3',
  2543. 2543   'customized' => '0',
  2544. 2544   'p1' => '2',
  2545. 2545   'p2' => '13',
  2546. 2546   'p3' => '46',
  2547. 2547   'p4' => '0',
  2548. 2548   'p5' => '0',
  2549. 2549   'p6' => '0',
  2550. 2550   'p7' => '0',
  2551. 2551   'p8' => '0',
  2552. 2552   'p9' => '0',
  2553. 2553   'updated' => '0',
  2554. 2554 ))
  2555. 2555 ->values(array(
  2556. 2556   'menu_name' => 'navigation',
  2557. 2557   'mlid' => '47',
  2558. 2558   'plid' => '17',
  2559. 2559   'link_path' => 'admin/user/settings',
  2560. 2560   'router_path' => 'admin/user/settings',
  2561. 2561   'link_title' => 'User settings',
  2562. 2562   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:101:"Configure default behavior of users, including registration requirements, e-mails, and user pictures.";}}',
  2563. 2563   'module' => 'system',
  2564. 2564   'hidden' => '0',
  2565. 2565   'external' => '0',
  2566. 2566   'has_children' => '0',
  2567. 2567   'expanded' => '0',
  2568. 2568   'weight' => '0',
  2569. 2569   'depth' => '3',
  2570. 2570   'customized' => '0',
  2571. 2571   'p1' => '2',
  2572. 2572   'p2' => '17',
  2573. 2573   'p3' => '47',
  2574. 2574   'p4' => '0',
  2575. 2575   'p5' => '0',
  2576. 2576   'p6' => '0',
  2577. 2577   'p7' => '0',
  2578. 2578   'p8' => '0',
  2579. 2579   'p9' => '0',
  2580. 2580   'updated' => '0',
  2581. 2581 ))
  2582. 2582 ->values(array(
  2583. 2583   'menu_name' => 'navigation',
  2584. 2584   'mlid' => '48',
  2585. 2585   'plid' => '17',
  2586. 2586   'link_path' => 'admin/user/user',
  2587. 2587   'router_path' => 'admin/user/user',
  2588. 2588   'link_title' => 'Users',
  2589. 2589   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:26:"List, add, and edit users.";}}',
  2590. 2590   'module' => 'system',
  2591. 2591   'hidden' => '0',
  2592. 2592   'external' => '0',
  2593. 2593   'has_children' => '0',
  2594. 2594   'expanded' => '0',
  2595. 2595   'weight' => '0',
  2596. 2596   'depth' => '3',
  2597. 2597   'customized' => '0',
  2598. 2598   'p1' => '2',
  2599. 2599   'p2' => '17',
  2600. 2600   'p3' => '48',
  2601. 2601   'p4' => '0',
  2602. 2602   'p5' => '0',
  2603. 2603   'p6' => '0',
  2604. 2604   'p7' => '0',
  2605. 2605   'p8' => '0',
  2606. 2606   'p9' => '0',
  2607. 2607   'updated' => '0',
  2608. 2608 ))
  2609. 2609 ->values(array(
  2610. 2610   'menu_name' => 'navigation',
  2611. 2611   'mlid' => '49',
  2612. 2612   'plid' => '32',
  2613. 2613   'link_path' => 'admin/settings/filters/%',
  2614. 2614   'router_path' => 'admin/settings/filters/%',
  2615. 2615   'link_title' => '',
  2616. 2616   'options' => 'a:0:{}',
  2617. 2617   'module' => 'system',
  2618. 2618   'hidden' => '-1',
  2619. 2619   'external' => '0',
  2620. 2620   'has_children' => '0',
  2621. 2621   'expanded' => '0',
  2622. 2622   'weight' => '0',
  2623. 2623   'depth' => '4',
  2624. 2624   'customized' => '0',
  2625. 2625   'p1' => '2',
  2626. 2626   'p2' => '15',
  2627. 2627   'p3' => '32',
  2628. 2628   'p4' => '49',
  2629. 2629   'p5' => '0',
  2630. 2630   'p6' => '0',
  2631. 2631   'p7' => '0',
  2632. 2632   'p8' => '0',
  2633. 2633   'p9' => '0',
  2634. 2634   'updated' => '0',
  2635. 2635 ))
  2636. 2636 ->values(array(
  2637. 2637   'menu_name' => 'navigation',
  2638. 2638   'mlid' => '50',
  2639. 2639   'plid' => '23',
  2640. 2640   'link_path' => 'admin/settings/clean-urls/check',
  2641. 2641   'router_path' => 'admin/settings/clean-urls/check',
  2642. 2642   'link_title' => 'Clean URL check',
  2643. 2643   'options' => 'a:0:{}',
  2644. 2644   'module' => 'system',
  2645. 2645   'hidden' => '-1',
  2646. 2646   'external' => '0',
  2647. 2647   'has_children' => '0',
  2648. 2648   'expanded' => '0',
  2649. 2649   'weight' => '0',
  2650. 2650   'depth' => '4',
  2651. 2651   'customized' => '0',
  2652. 2652   'p1' => '2',
  2653. 2653   'p2' => '15',
  2654. 2654   'p3' => '23',
  2655. 2655   'p4' => '50',
  2656. 2656   'p5' => '0',
  2657. 2657   'p6' => '0',
  2658. 2658   'p7' => '0',
  2659. 2659   'p8' => '0',
  2660. 2660   'p9' => '0',
  2661. 2661   'updated' => '0',
  2662. 2662 ))
  2663. 2663 ->values(array(
  2664. 2664   'menu_name' => 'navigation',
  2665. 2665   'mlid' => '51',
  2666. 2666   'plid' => '20',
  2667. 2667   'link_path' => 'admin/settings/actions/configure',
  2668. 2668   'router_path' => 'admin/settings/actions/configure',
  2669. 2669   'link_title' => 'Configure an advanced action',
  2670. 2670   'options' => 'a:0:{}',
  2671. 2671   'module' => 'system',
  2672. 2672   'hidden' => '-1',
  2673. 2673   'external' => '0',
  2674. 2674   'has_children' => '0',
  2675. 2675   'expanded' => '0',
  2676. 2676   'weight' => '0',
  2677. 2677   'depth' => '4',
  2678. 2678   'customized' => '0',
  2679. 2679   'p1' => '2',
  2680. 2680   'p2' => '15',
  2681. 2681   'p3' => '20',
  2682. 2682   'p4' => '51',
  2683. 2683   'p5' => '0',
  2684. 2684   'p6' => '0',
  2685. 2685   'p7' => '0',
  2686. 2686   'p8' => '0',
  2687. 2687   'p9' => '0',
  2688. 2688   'updated' => '0',
  2689. 2689 ))
  2690. 2690 ->values(array(
  2691. 2691   'menu_name' => 'navigation',
  2692. 2692   'mlid' => '52',
  2693. 2693   'plid' => '22',
  2694. 2694   'link_path' => 'admin/build/block/configure',
  2695. 2695   'router_path' => 'admin/build/block/configure',
  2696. 2696   'link_title' => 'Configure block',
  2697. 2697   'options' => 'a:0:{}',
  2698. 2698   'module' => 'system',
  2699. 2699   'hidden' => '-1',
  2700. 2700   'external' => '0',
  2701. 2701   'has_children' => '0',
  2702. 2702   'expanded' => '0',
  2703. 2703   'weight' => '0',
  2704. 2704   'depth' => '4',
  2705. 2705   'customized' => '0',
  2706. 2706   'p1' => '2',
  2707. 2707   'p2' => '14',
  2708. 2708   'p3' => '22',
  2709. 2709   'p4' => '52',
  2710. 2710   'p5' => '0',
  2711. 2711   'p6' => '0',
  2712. 2712   'p7' => '0',
  2713. 2713   'p8' => '0',
  2714. 2714   'p9' => '0',
  2715. 2715   'updated' => '0',
  2716. 2716 ))
  2717. 2717 ->values(array(
  2718. 2718   'menu_name' => 'navigation',
  2719. 2719   'mlid' => '53',
  2720. 2720   'plid' => '33',
  2721. 2721   'link_path' => 'admin/settings/logging/dblog',
  2722. 2722   'router_path' => 'admin/settings/logging/dblog',
  2723. 2723   'link_title' => 'Database logging',
  2724. 2724   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:169:"Settings for logging to the Drupal database logs. This is the most common method for small to medium sites on shared hosting. The logs are viewable from the admin pages.";}}',
  2725. 2725   'module' => 'system',
  2726. 2726   'hidden' => '0',
  2727. 2727   'external' => '0',
  2728. 2728   'has_children' => '0',
  2729. 2729   'expanded' => '0',
  2730. 2730   'weight' => '0',
  2731. 2731   'depth' => '4',
  2732. 2732   'customized' => '0',
  2733. 2733   'p1' => '2',
  2734. 2734   'p2' => '15',
  2735. 2735   'p3' => '33',
  2736. 2736   'p4' => '53',
  2737. 2737   'p5' => '0',
  2738. 2738   'p6' => '0',
  2739. 2739   'p7' => '0',
  2740. 2740   'p8' => '0',
  2741. 2741   'p9' => '0',
  2742. 2742   'updated' => '0',
  2743. 2743 ))
  2744. 2744 ->values(array(
  2745. 2745   'menu_name' => 'navigation',
  2746. 2746   'mlid' => '54',
  2747. 2747   'plid' => '26',
  2748. 2748   'link_path' => 'admin/settings/date-time/lookup',
  2749. 2749   'router_path' => 'admin/settings/date-time/lookup',
  2750. 2750   'link_title' => 'Date and time lookup',
  2751. 2751   'options' => 'a:0:{}',
  2752. 2752   'module' => 'system',
  2753. 2753   'hidden' => '-1',
  2754. 2754   'external' => '0',
  2755. 2755   'has_children' => '0',
  2756. 2756   'expanded' => '0',
  2757. 2757   'weight' => '0',
  2758. 2758   'depth' => '4',
  2759. 2759   'customized' => '0',
  2760. 2760   'p1' => '2',
  2761. 2761   'p2' => '15',
  2762. 2762   'p3' => '26',
  2763. 2763   'p4' => '54',
  2764. 2764   'p5' => '0',
  2765. 2765   'p6' => '0',
  2766. 2766   'p7' => '0',
  2767. 2767   'p8' => '0',
  2768. 2768   'p9' => '0',
  2769. 2769   'updated' => '0',
  2770. 2770 ))
  2771. 2771 ->values(array(
  2772. 2772   'menu_name' => 'navigation',
  2773. 2773   'mlid' => '55',
  2774. 2774   'plid' => '22',
  2775. 2775   'link_path' => 'admin/build/block/delete',
  2776. 2776   'router_path' => 'admin/build/block/delete',
  2777. 2777   'link_title' => 'Delete block',
  2778. 2778   'options' => 'a:0:{}',
  2779. 2779   'module' => 'system',
  2780. 2780   'hidden' => '-1',
  2781. 2781   'external' => '0',
  2782. 2782   'has_children' => '0',
  2783. 2783   'expanded' => '0',
  2784. 2784   'weight' => '0',
  2785. 2785   'depth' => '4',
  2786. 2786   'customized' => '0',
  2787. 2787   'p1' => '2',
  2788. 2788   'p2' => '14',
  2789. 2789   'p3' => '22',
  2790. 2790   'p4' => '55',
  2791. 2791   'p5' => '0',
  2792. 2792   'p6' => '0',
  2793. 2793   'p7' => '0',
  2794. 2794   'p8' => '0',
  2795. 2795   'p9' => '0',
  2796. 2796   'updated' => '0',
  2797. 2797 ))
  2798. 2798 ->values(array(
  2799. 2799   'menu_name' => 'navigation',
  2800. 2800   'mlid' => '56',
  2801. 2801   'plid' => '32',
  2802. 2802   'link_path' => 'admin/settings/filters/delete',
  2803. 2803   'router_path' => 'admin/settings/filters/delete',
  2804. 2804   'link_title' => 'Delete input format',
  2805. 2805   'options' => 'a:0:{}',
  2806. 2806   'module' => 'system',
  2807. 2807   'hidden' => '-1',
  2808. 2808   'external' => '0',
  2809. 2809   'has_children' => '0',
  2810. 2810   'expanded' => '0',
  2811. 2811   'weight' => '0',
  2812. 2812   'depth' => '4',
  2813. 2813   'customized' => '0',
  2814. 2814   'p1' => '2',
  2815. 2815   'p2' => '15',
  2816. 2816   'p3' => '32',
  2817. 2817   'p4' => '56',
  2818. 2818   'p5' => '0',
  2819. 2819   'p6' => '0',
  2820. 2820   'p7' => '0',
  2821. 2821   'p8' => '0',
  2822. 2822   'p9' => '0',
  2823. 2823   'updated' => '0',
  2824. 2824 ))
  2825. 2825 ->values(array(
  2826. 2826   'menu_name' => 'navigation',
  2827. 2827   'mlid' => '57',
  2828. 2828   'plid' => '19',
  2829. 2829   'link_path' => 'admin/user/rules/delete',
  2830. 2830   'router_path' => 'admin/user/rules/delete',
  2831. 2831   'link_title' => 'Delete rule',
  2832. 2832   'options' => 'a:0:{}',
  2833. 2833   'module' => 'system',
  2834. 2834   'hidden' => '-1',
  2835. 2835   'external' => '0',
  2836. 2836   'has_children' => '0',
  2837. 2837   'expanded' => '0',
  2838. 2838   'weight' => '0',
  2839. 2839   'depth' => '4',
  2840. 2840   'customized' => '0',
  2841. 2841   'p1' => '2',
  2842. 2842   'p2' => '17',
  2843. 2843   'p3' => '19',
  2844. 2844   'p4' => '57',
  2845. 2845   'p5' => '0',
  2846. 2846   'p6' => '0',
  2847. 2847   'p7' => '0',
  2848. 2848   'p8' => '0',
  2849. 2849   'p9' => '0',
  2850. 2850   'updated' => '0',
  2851. 2851 ))
  2852. 2852 ->values(array(
  2853. 2853   'menu_name' => 'navigation',
  2854. 2854   'mlid' => '58',
  2855. 2855   'plid' => '13',
  2856. 2856   'link_path' => 'admin/reports/event/%',
  2857. 2857   'router_path' => 'admin/reports/event/%',
  2858. 2858   'link_title' => 'Details',
  2859. 2859   'options' => 'a:0:{}',
  2860. 2860   'module' => 'system',
  2861. 2861   'hidden' => '-1',
  2862. 2862   'external' => '0',
  2863. 2863   'has_children' => '0',
  2864. 2864   'expanded' => '0',
  2865. 2865   'weight' => '0',
  2866. 2866   'depth' => '3',
  2867. 2867   'customized' => '0',
  2868. 2868   'p1' => '2',
  2869. 2869   'p2' => '13',
  2870. 2870   'p3' => '58',
  2871. 2871   'p4' => '0',
  2872. 2872   'p5' => '0',
  2873. 2873   'p6' => '0',
  2874. 2874   'p7' => '0',
  2875. 2875   'p8' => '0',
  2876. 2876   'p9' => '0',
  2877. 2877   'updated' => '0',
  2878. 2878 ))
  2879. 2879 ->values(array(
  2880. 2880   'menu_name' => 'navigation',
  2881. 2881   'mlid' => '59',
  2882. 2882   'plid' => '40',
  2883. 2883   'link_path' => 'admin/user/roles/edit',
  2884. 2884   'router_path' => 'admin/user/roles/edit',
  2885. 2885   'link_title' => 'Edit role',
  2886. 2886   'options' => 'a:0:{}',
  2887. 2887   'module' => 'system',
  2888. 2888   'hidden' => '-1',
  2889. 2889   'external' => '0',
  2890. 2890   'has_children' => '0',
  2891. 2891   'expanded' => '0',
  2892. 2892   'weight' => '0',
  2893. 2893   'depth' => '4',
  2894. 2894   'customized' => '0',
  2895. 2895   'p1' => '2',
  2896. 2896   'p2' => '17',
  2897. 2897   'p3' => '40',
  2898. 2898   'p4' => '59',
  2899. 2899   'p5' => '0',
  2900. 2900   'p6' => '0',
  2901. 2901   'p7' => '0',
  2902. 2902   'p8' => '0',
  2903. 2903   'p9' => '0',
  2904. 2904   'updated' => '0',
  2905. 2905 ))
  2906. 2906 ->values(array(
  2907. 2907   'menu_name' => 'navigation',
  2908. 2908   'mlid' => '60',
  2909. 2909   'plid' => '19',
  2910. 2910   'link_path' => 'admin/user/rules/edit',
  2911. 2911   'router_path' => 'admin/user/rules/edit',
  2912. 2912   'link_title' => 'Edit rule',
  2913. 2913   'options' => 'a:0:{}',
  2914. 2914   'module' => 'system',
  2915. 2915   'hidden' => '-1',
  2916. 2916   'external' => '0',
  2917. 2917   'has_children' => '0',
  2918. 2918   'expanded' => '0',
  2919. 2919   'weight' => '0',
  2920. 2920   'depth' => '4',
  2921. 2921   'customized' => '0',
  2922. 2922   'p1' => '2',
  2923. 2923   'p2' => '17',
  2924. 2924   'p3' => '19',
  2925. 2925   'p4' => '60',
  2926. 2926   'p5' => '0',
  2927. 2927   'p6' => '0',
  2928. 2928   'p7' => '0',
  2929. 2929   'p8' => '0',
  2930. 2930   'p9' => '0',
  2931. 2931   'updated' => '0',
  2932. 2932 ))
  2933. 2933 ->values(array(
  2934. 2934   'menu_name' => 'navigation',
  2935. 2935   'mlid' => '61',
  2936. 2936   'plid' => '43',
  2937. 2937   'link_path' => 'admin/reports/status/php',
  2938. 2938   'router_path' => 'admin/reports/status/php',
  2939. 2939   'link_title' => 'PHP',
  2940. 2940   'options' => 'a:0:{}',
  2941. 2941   'module' => 'system',
  2942. 2942   'hidden' => '-1',
  2943. 2943   'external' => '0',
  2944. 2944   'has_children' => '0',
  2945. 2945   'expanded' => '0',
  2946. 2946   'weight' => '0',
  2947. 2947   'depth' => '4',
  2948. 2948   'customized' => '0',
  2949. 2949   'p1' => '2',
  2950. 2950   'p2' => '13',
  2951. 2951   'p3' => '43',
  2952. 2952   'p4' => '61',
  2953. 2953   'p5' => '0',
  2954. 2954   'p6' => '0',
  2955. 2955   'p7' => '0',
  2956. 2956   'p8' => '0',
  2957. 2957   'p9' => '0',
  2958. 2958   'updated' => '0',
  2959. 2959 ))
  2960. 2960 ->values(array(
  2961. 2961   'menu_name' => 'navigation',
  2962. 2962   'mlid' => '62',
  2963. 2963   'plid' => '37',
  2964. 2964   'link_path' => 'admin/content/node-settings/rebuild',
  2965. 2965   'router_path' => 'admin/content/node-settings/rebuild',
  2966. 2966   'link_title' => 'Rebuild permissions',
  2967. 2967   'options' => 'a:0:{}',
  2968. 2968   'module' => 'system',
  2969. 2969   'hidden' => '-1',
  2970. 2970   'external' => '0',
  2971. 2971   'has_children' => '0',
  2972. 2972   'expanded' => '0',
  2973. 2973   'weight' => '0',
  2974. 2974   'depth' => '4',
  2975. 2975   'customized' => '0',
  2976. 2976   'p1' => '2',
  2977. 2977   'p2' => '10',
  2978. 2978   'p3' => '37',
  2979. 2979   'p4' => '62',
  2980. 2980   'p5' => '0',
  2981. 2981   'p6' => '0',
  2982. 2982   'p7' => '0',
  2983. 2983   'p8' => '0',
  2984. 2984   'p9' => '0',
  2985. 2985   'updated' => '0',
  2986. 2986 ))
  2987. 2987 ->values(array(
  2988. 2988   'menu_name' => 'navigation',
  2989. 2989   'mlid' => '63',
  2990. 2990   'plid' => '20',
  2991. 2991   'link_path' => 'admin/settings/actions/orphan',
  2992. 2992   'router_path' => 'admin/settings/actions/orphan',
  2993. 2993   'link_title' => 'Remove orphans',
  2994. 2994   'options' => 'a:0:{}',
  2995. 2995   'module' => 'system',
  2996. 2996   'hidden' => '-1',
  2997. 2997   'external' => '0',
  2998. 2998   'has_children' => '0',
  2999. 2999   'expanded' => '0',
  3000. 3000   'weight' => '0',
  3001. 3001   'depth' => '4',
  3002. 3002   'customized' => '0',
  3003. 3003   'p1' => '2',
  3004. 3004   'p2' => '15',
  3005. 3005   'p3' => '20',
  3006. 3006   'p4' => '63',
  3007. 3007   'p5' => '0',
  3008. 3008   'p6' => '0',
  3009. 3009   'p7' => '0',
  3010. 3010   'p8' => '0',
  3011. 3011   'p9' => '0',
  3012. 3012   'updated' => '0',
  3013. 3013 ))
  3014. 3014 ->values(array(
  3015. 3015   'menu_name' => 'navigation',
  3016. 3016   'mlid' => '64',
  3017. 3017   'plid' => '43',
  3018. 3018   'link_path' => 'admin/reports/status/run-cron',
  3019. 3019   'router_path' => 'admin/reports/status/run-cron',
  3020. 3020   'link_title' => 'Run cron',
  3021. 3021   'options' => 'a:0:{}',
  3022. 3022   'module' => 'system',
  3023. 3023   'hidden' => '-1',
  3024. 3024   'external' => '0',
  3025. 3025   'has_children' => '0',
  3026. 3026   'expanded' => '0',
  3027. 3027   'weight' => '0',
  3028. 3028   'depth' => '4',
  3029. 3029   'customized' => '0',
  3030. 3030   'p1' => '2',
  3031. 3031   'p2' => '13',
  3032. 3032   'p3' => '43',
  3033. 3033   'p4' => '64',
  3034. 3034   'p5' => '0',
  3035. 3035   'p6' => '0',
  3036. 3036   'p7' => '0',
  3037. 3037   'p8' => '0',
  3038. 3038   'p9' => '0',
  3039. 3039   'updated' => '0',
  3040. 3040 ))
  3041. 3041 ->values(array(
  3042. 3042   'menu_name' => 'navigation',
  3043. 3043   'mlid' => '65',
  3044. 3044   'plid' => '43',
  3045. 3045   'link_path' => 'admin/reports/status/sql',
  3046. 3046   'router_path' => 'admin/reports/status/sql',
  3047. 3047   'link_title' => 'SQL',
  3048. 3048   'options' => 'a:0:{}',
  3049. 3049   'module' => 'system',
  3050. 3050   'hidden' => '-1',
  3051. 3051   'external' => '0',
  3052. 3052   'has_children' => '0',
  3053. 3053   'expanded' => '0',
  3054. 3054   'weight' => '0',
  3055. 3055   'depth' => '4',
  3056. 3056   'customized' => '0',
  3057. 3057   'p1' => '2',
  3058. 3058   'p2' => '13',
  3059. 3059   'p3' => '43',
  3060. 3060   'p4' => '65',
  3061. 3061   'p5' => '0',
  3062. 3062   'p6' => '0',
  3063. 3063   'p7' => '0',
  3064. 3064   'p8' => '0',
  3065. 3065   'p9' => '0',
  3066. 3066   'updated' => '0',
  3067. 3067 ))
  3068. 3068 ->values(array(
  3069. 3069   'menu_name' => 'navigation',
  3070. 3070   'mlid' => '66',
  3071. 3071   'plid' => '20',
  3072. 3072   'link_path' => 'admin/settings/actions/delete/%',
  3073. 3073   'router_path' => 'admin/settings/actions/delete/%',
  3074. 3074   'link_title' => 'Delete action',
  3075. 3075   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:17:"Delete an action.";}}',
  3076. 3076   'module' => 'system',
  3077. 3077   'hidden' => '-1',
  3078. 3078   'external' => '0',
  3079. 3079   'has_children' => '0',
  3080. 3080   'expanded' => '0',
  3081. 3081   'weight' => '0',
  3082. 3082   'depth' => '4',
  3083. 3083   'customized' => '0',
  3084. 3084   'p1' => '2',
  3085. 3085   'p2' => '15',
  3086. 3086   'p3' => '20',
  3087. 3087   'p4' => '66',
  3088. 3088   'p5' => '0',
  3089. 3089   'p6' => '0',
  3090. 3090   'p7' => '0',
  3091. 3091   'p8' => '0',
  3092. 3092   'p9' => '0',
  3093. 3093   'updated' => '0',
  3094. 3094 ))
  3095. 3095 ->values(array(
  3096. 3096   'menu_name' => 'navigation',
  3097. 3097   'mlid' => '67',
  3098. 3098   'plid' => '22',
  3099. 3099   'link_path' => 'admin/build/block/list/js',
  3100. 3100   'router_path' => 'admin/build/block/list/js',
  3101. 3101   'link_title' => 'JavaScript List Form',
  3102. 3102   'options' => 'a:0:{}',
  3103. 3103   'module' => 'system',
  3104. 3104   'hidden' => '-1',
  3105. 3105   'external' => '0',
  3106. 3106   'has_children' => '0',
  3107. 3107   'expanded' => '0',
  3108. 3108   'weight' => '0',
  3109. 3109   'depth' => '4',
  3110. 3110   'customized' => '0',
  3111. 3111   'p1' => '2',
  3112. 3112   'p2' => '14',
  3113. 3113   'p3' => '22',
  3114. 3114   'p4' => '67',
  3115. 3115   'p5' => '0',
  3116. 3116   'p6' => '0',
  3117. 3117   'p7' => '0',
  3118. 3118   'p8' => '0',
  3119. 3119   'p9' => '0',
  3120. 3120   'updated' => '0',
  3121. 3121 ))
  3122. 3122 ->values(array(
  3123. 3123   'menu_name' => 'navigation',
  3124. 3124   'mlid' => '68',
  3125. 3125   'plid' => '34',
  3126. 3126   'link_path' => 'admin/build/modules/list/confirm',
  3127. 3127   'router_path' => 'admin/build/modules/list/confirm',
  3128. 3128   'link_title' => 'List',
  3129. 3129   'options' => 'a:0:{}',
  3130. 3130   'module' => 'system',
  3131. 3131   'hidden' => '-1',
  3132. 3132   'external' => '0',
  3133. 3133   'has_children' => '0',
  3134. 3134   'expanded' => '0',
  3135. 3135   'weight' => '0',
  3136. 3136   'depth' => '4',
  3137. 3137   'customized' => '0',
  3138. 3138   'p1' => '2',
  3139. 3139   'p2' => '14',
  3140. 3140   'p3' => '34',
  3141. 3141   'p4' => '68',
  3142. 3142   'p5' => '0',
  3143. 3143   'p6' => '0',
  3144. 3144   'p7' => '0',
  3145. 3145   'p8' => '0',
  3146. 3146   'p9' => '0',
  3147. 3147   'updated' => '0',
  3148. 3148 ))
  3149. 3149 ->values(array(
  3150. 3150   'menu_name' => 'navigation',
  3151. 3151   'mlid' => '69',
  3152. 3152   'plid' => '0',
  3153. 3153   'link_path' => 'user/reset/%/%/%',
  3154. 3154   'router_path' => 'user/reset/%/%/%',
  3155. 3155   'link_title' => 'Reset password',
  3156. 3156   'options' => 'a:0:{}',
  3157. 3157   'module' => 'system',
  3158. 3158   'hidden' => '-1',
  3159. 3159   'external' => '0',
  3160. 3160   'has_children' => '0',
  3161. 3161   'expanded' => '0',
  3162. 3162   'weight' => '0',
  3163. 3163   'depth' => '1',
  3164. 3164   'customized' => '0',
  3165. 3165   'p1' => '69',
  3166. 3166   'p2' => '0',
  3167. 3167   'p3' => '0',
  3168. 3168   'p4' => '0',
  3169. 3169   'p5' => '0',
  3170. 3170   'p6' => '0',
  3171. 3171   'p7' => '0',
  3172. 3172   'p8' => '0',
  3173. 3173   'p9' => '0',
  3174. 3174   'updated' => '0',
  3175. 3175 ))
  3176. 3176 ->values(array(
  3177. 3177   'menu_name' => 'navigation',
  3178. 3178   'mlid' => '70',
  3179. 3179   'plid' => '34',
  3180. 3180   'link_path' => 'admin/build/modules/uninstall/confirm',
  3181. 3181   'router_path' => 'admin/build/modules/uninstall/confirm',
  3182. 3182   'link_title' => 'Uninstall',
  3183. 3183   'options' => 'a:0:{}',
  3184. 3184   'module' => 'system',
  3185. 3185   'hidden' => '-1',
  3186. 3186   'external' => '0',
  3187. 3187   'has_children' => '0',
  3188. 3188   'expanded' => '0',
  3189. 3189   'weight' => '0',
  3190. 3190   'depth' => '4',
  3191. 3191   'customized' => '0',
  3192. 3192   'p1' => '2',
  3193. 3193   'p2' => '14',
  3194. 3194   'p3' => '34',
  3195. 3195   'p4' => '70',
  3196. 3196   'p5' => '0',
  3197. 3197   'p6' => '0',
  3198. 3198   'p7' => '0',
  3199. 3199   'p8' => '0',
  3200. 3200   'p9' => '0',
  3201. 3201   'updated' => '0',
  3202. 3202 ))
  3203. 3203 ->values(array(
  3204. 3204   'menu_name' => 'navigation',
  3205. 3205   'mlid' => '71',
  3206. 3206   'plid' => '0',
  3207. 3207   'link_path' => 'node/%/revisions/%/delete',
  3208. 3208   'router_path' => 'node/%/revisions/%/delete',
  3209. 3209   'link_title' => 'Delete earlier revision',
  3210. 3210   'options' => 'a:0:{}',
  3211. 3211   'module' => 'system',
  3212. 3212   'hidden' => '-1',
  3213. 3213   'external' => '0',
  3214. 3214   'has_children' => '0',
  3215. 3215   'expanded' => '0',
  3216. 3216   'weight' => '0',
  3217. 3217   'depth' => '1',
  3218. 3218   'customized' => '0',
  3219. 3219   'p1' => '71',
  3220. 3220   'p2' => '0',
  3221. 3221   'p3' => '0',
  3222. 3222   'p4' => '0',
  3223. 3223   'p5' => '0',
  3224. 3224   'p6' => '0',
  3225. 3225   'p7' => '0',
  3226. 3226   'p8' => '0',
  3227. 3227   'p9' => '0',
  3228. 3228   'updated' => '0',
  3229. 3229 ))
  3230. 3230 ->values(array(
  3231. 3231   'menu_name' => 'navigation',
  3232. 3232   'mlid' => '72',
  3233. 3233   'plid' => '0',
  3234. 3234   'link_path' => 'node/%/revisions/%/revert',
  3235. 3235   'router_path' => 'node/%/revisions/%/revert',
  3236. 3236   'link_title' => 'Revert to earlier revision',
  3237. 3237   'options' => 'a:0:{}',
  3238. 3238   'module' => 'system',
  3239. 3239   'hidden' => '-1',
  3240. 3240   'external' => '0',
  3241. 3241   'has_children' => '0',
  3242. 3242   'expanded' => '0',
  3243. 3243   'weight' => '0',
  3244. 3244   'depth' => '1',
  3245. 3245   'customized' => '0',
  3246. 3246   'p1' => '72',
  3247. 3247   'p2' => '0',
  3248. 3248   'p3' => '0',
  3249. 3249   'p4' => '0',
  3250. 3250   'p5' => '0',
  3251. 3251   'p6' => '0',
  3252. 3252   'p7' => '0',
  3253. 3253   'p8' => '0',
  3254. 3254   'p9' => '0',
  3255. 3255   'updated' => '0',
  3256. 3256 ))
  3257. 3257 ->values(array(
  3258. 3258   'menu_name' => 'navigation',
  3259. 3259   'mlid' => '73',
  3260. 3260   'plid' => '0',
  3261. 3261   'link_path' => 'node/%/revisions/%/view',
  3262. 3262   'router_path' => 'node/%/revisions/%/view',
  3263. 3263   'link_title' => 'Revisions',
  3264. 3264   'options' => 'a:0:{}',
  3265. 3265   'module' => 'system',
  3266. 3266   'hidden' => '-1',
  3267. 3267   'external' => '0',
  3268. 3268   'has_children' => '0',
  3269. 3269   'expanded' => '0',
  3270. 3270   'weight' => '0',
  3271. 3271   'depth' => '1',
  3272. 3272   'customized' => '0',
  3273. 3273   'p1' => '73',
  3274. 3274   'p2' => '0',
  3275. 3275   'p3' => '0',
  3276. 3276   'p4' => '0',
  3277. 3277   'p5' => '0',
  3278. 3278   'p6' => '0',
  3279. 3279   'p7' => '0',
  3280. 3280   'p8' => '0',
  3281. 3281   'p9' => '0',
  3282. 3282   'updated' => '0',
  3283. 3283 ))
  3284. 3284 ->values(array(
  3285. 3285   'menu_name' => 'navigation',
  3286. 3286   'mlid' => '74',
  3287. 3287   'plid' => '13',
  3288. 3288   'link_path' => 'admin/reports/updates',
  3289. 3289   'router_path' => 'admin/reports/updates',
  3290. 3290   'link_title' => 'Available updates',
  3291. 3291   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:82:"Get a status report about available updates for your installed modules and themes.";}}',
  3292. 3292   'module' => 'system',
  3293. 3293   'hidden' => '0',
  3294. 3294   'external' => '0',
  3295. 3295   'has_children' => '0',
  3296. 3296   'expanded' => '0',
  3297. 3297   'weight' => '10',
  3298. 3298   'depth' => '3',
  3299. 3299   'customized' => '0',
  3300. 3300   'p1' => '2',
  3301. 3301   'p2' => '13',
  3302. 3302   'p3' => '74',
  3303. 3303   'p4' => '0',
  3304. 3304   'p5' => '0',
  3305. 3305   'p6' => '0',
  3306. 3306   'p7' => '0',
  3307. 3307   'p8' => '0',
  3308. 3308   'p9' => '0',
  3309. 3309   'updated' => '0',
  3310. 3310 ))
  3311. 3311 ->values(array(
  3312. 3312   'menu_name' => 'navigation',
  3313. 3313   'mlid' => '75',
  3314. 3314   'plid' => '11',
  3315. 3315   'link_path' => 'node/add/page',
  3316. 3316   'router_path' => 'node/add/page',
  3317. 3317   'link_title' => 'Page',
  3318. 3318   'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:296:\"A <em>page</em>, similar in form to a <em>story</em>, is a simple method for creating and displaying information that rarely changes, such as an \"About us\" section of a website. By default, a <em>page</em> entry does not allow visitor comments and is not featured on the site's initial home page.\";}}",
  3319. 3319   'module' => 'system',
  3320. 3320   'hidden' => '0',
  3321. 3321   'external' => '0',
  3322. 3322   'has_children' => '0',
  3323. 3323   'expanded' => '0',
  3324. 3324   'weight' => '0',
  3325. 3325   'depth' => '2',
  3326. 3326   'customized' => '0',
  3327. 3327   'p1' => '11',
  3328. 3328   'p2' => '75',
  3329. 3329   'p3' => '0',
  3330. 3330   'p4' => '0',
  3331. 3331   'p5' => '0',
  3332. 3332   'p6' => '0',
  3333. 3333   'p7' => '0',
  3334. 3334   'p8' => '0',
  3335. 3335   'p9' => '0',
  3336. 3336   'updated' => '0',
  3337. 3337 ))
  3338. 3338 ->values(array(
  3339. 3339   'menu_name' => 'navigation',
  3340. 3340   'mlid' => '76',
  3341. 3341   'plid' => '11',
  3342. 3342   'link_path' => 'node/add/story',
  3343. 3343   'router_path' => 'node/add/story',
  3344. 3344   'link_title' => 'Story',
  3345. 3345   'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:392:\"A <em>story</em>, similar in form to a <em>page</em>, is ideal for creating and displaying content that informs or engages website visitors. Press releases, site announcements, and informal blog-like entries may all be created with a <em>story</em> entry. By default, a <em>story</em> entry is automatically featured on the site's initial home page, and provides the ability to post comments.\";}}",
  3346. 3346   'module' => 'system',
  3347. 3347   'hidden' => '0',
  3348. 3348   'external' => '0',
  3349. 3349   'has_children' => '0',
  3350. 3350   'expanded' => '0',
  3351. 3351   'weight' => '0',
  3352. 3352   'depth' => '2',
  3353. 3353   'customized' => '0',
  3354. 3354   'p1' => '11',
  3355. 3355   'p2' => '76',
  3356. 3356   'p3' => '0',
  3357. 3357   'p4' => '0',
  3358. 3358   'p5' => '0',
  3359. 3359   'p6' => '0',
  3360. 3360   'p7' => '0',
  3361. 3361   'p8' => '0',
  3362. 3362   'p9' => '0',
  3363. 3363   'updated' => '0',
  3364. 3364 ))
  3365. 3365 ->values(array(
  3366. 3366   'menu_name' => 'navigation',
  3367. 3367   'mlid' => '77',
  3368. 3368   'plid' => '74',
  3369. 3369   'link_path' => 'admin/reports/updates/check',
  3370. 3370   'router_path' => 'admin/reports/updates/check',
  3371. 3371   'link_title' => 'Manual update check',
  3372. 3372   'options' => 'a:0:{}',
  3373. 3373   'module' => 'system',
  3374. 3374   'hidden' => '-1',
  3375. 3375   'external' => '0',
  3376. 3376   'has_children' => '0',
  3377. 3377   'expanded' => '0',
  3378. 3378   'weight' => '0',
  3379. 3379   'depth' => '4',
  3380. 3380   'customized' => '0',
  3381. 3381   'p1' => '2',
  3382. 3382   'p2' => '13',
  3383. 3383   'p3' => '74',
  3384. 3384   'p4' => '77',
  3385. 3385   'p5' => '0',
  3386. 3386   'p6' => '0',
  3387. 3387   'p7' => '0',
  3388. 3388   'p8' => '0',
  3389. 3389   'p9' => '0',
  3390. 3390   'updated' => '0',
  3391. 3391 ))
  3392. 3392 ->values(array(
  3393. 3393   'menu_name' => 'navigation',
  3394. 3394   'mlid' => '78',
  3395. 3395   'plid' => '10',
  3396. 3396   'link_path' => 'admin/content/node-type/page',
  3397. 3397   'router_path' => 'admin/content/node-type/page',
  3398. 3398   'link_title' => 'Page',
  3399. 3399   'options' => 'a:0:{}',
  3400. 3400   'module' => 'system',
  3401. 3401   'hidden' => '-1',
  3402. 3402   'external' => '0',
  3403. 3403   'has_children' => '0',
  3404. 3404   'expanded' => '0',
  3405. 3405   'weight' => '0',
  3406. 3406   'depth' => '3',
  3407. 3407   'customized' => '0',
  3408. 3408   'p1' => '2',
  3409. 3409   'p2' => '10',
  3410. 3410   'p3' => '78',
  3411. 3411   'p4' => '0',
  3412. 3412   'p5' => '0',
  3413. 3413   'p6' => '0',
  3414. 3414   'p7' => '0',
  3415. 3415   'p8' => '0',
  3416. 3416   'p9' => '0',
  3417. 3417   'updated' => '0',
  3418. 3418 ))
  3419. 3419 ->values(array(
  3420. 3420   'menu_name' => 'navigation',
  3421. 3421   'mlid' => '79',
  3422. 3422   'plid' => '10',
  3423. 3423   'link_path' => 'admin/content/node-type/story',
  3424. 3424   'router_path' => 'admin/content/node-type/story',
  3425. 3425   'link_title' => 'Story',
  3426. 3426   'options' => 'a:0:{}',
  3427. 3427   'module' => 'system',
  3428. 3428   'hidden' => '-1',
  3429. 3429   'external' => '0',
  3430. 3430   'has_children' => '0',
  3431. 3431   'expanded' => '0',
  3432. 3432   'weight' => '0',
  3433. 3433   'depth' => '3',
  3434. 3434   'customized' => '0',
  3435. 3435   'p1' => '2',
  3436. 3436   'p2' => '10',
  3437. 3437   'p3' => '79',
  3438. 3438   'p4' => '0',
  3439. 3439   'p5' => '0',
  3440. 3440   'p6' => '0',
  3441. 3441   'p7' => '0',
  3442. 3442   'p8' => '0',
  3443. 3443   'p9' => '0',
  3444. 3444   'updated' => '0',
  3445. 3445 ))
  3446. 3446 ->values(array(
  3447. 3447   'menu_name' => 'navigation',
  3448. 3448   'mlid' => '80',
  3449. 3449   'plid' => '0',
  3450. 3450   'link_path' => 'admin/content/node-type/page/delete',
  3451. 3451   'router_path' => 'admin/content/node-type/page/delete',
  3452. 3452   'link_title' => 'Delete',
  3453. 3453   'options' => 'a:0:{}',
  3454. 3454   'module' => 'system',
  3455. 3455   'hidden' => '-1',
  3456. 3456   'external' => '0',
  3457. 3457   'has_children' => '0',
  3458. 3458   'expanded' => '0',
  3459. 3459   'weight' => '0',
  3460. 3460   'depth' => '1',
  3461. 3461   'customized' => '0',
  3462. 3462   'p1' => '80',
  3463. 3463   'p2' => '0',
  3464. 3464   'p3' => '0',
  3465. 3465   'p4' => '0',
  3466. 3466   'p5' => '0',
  3467. 3467   'p6' => '0',
  3468. 3468   'p7' => '0',
  3469. 3469   'p8' => '0',
  3470. 3470   'p9' => '0',
  3471. 3471   'updated' => '0',
  3472. 3472 ))
  3473. 3473 ->values(array(
  3474. 3474   'menu_name' => 'navigation',
  3475. 3475   'mlid' => '81',
  3476. 3476   'plid' => '0',
  3477. 3477   'link_path' => 'admin/content/node-type/story/delete',
  3478. 3478   'router_path' => 'admin/content/node-type/story/delete',
  3479. 3479   'link_title' => 'Delete',
  3480. 3480   'options' => 'a:0:{}',
  3481. 3481   'module' => 'system',
  3482. 3482   'hidden' => '-1',
  3483. 3483   'external' => '0',
  3484. 3484   'has_children' => '0',
  3485. 3485   'expanded' => '0',
  3486. 3486   'weight' => '0',
  3487. 3487   'depth' => '1',
  3488. 3488   'customized' => '0',
  3489. 3489   'p1' => '81',
  3490. 3490   'p2' => '0',
  3491. 3491   'p3' => '0',
  3492. 3492   'p4' => '0',
  3493. 3493   'p5' => '0',
  3494. 3494   'p6' => '0',
  3495. 3495   'p7' => '0',
  3496. 3496   'p8' => '0',
  3497. 3497   'p9' => '0',
  3498. 3498   'updated' => '0',
  3499. 3499 ))
  3500. 3500 ->execute();
  3501. 3501 
  3502. 3502 db_create_table('menu_router', array(
  3503. 3503   'fields' => array(
  3504. 3504     'path' => array(
  3505. 3505       'type' => 'varchar',
  3506. 3506       'length' => 255,
  3507. 3507       'not null' => TRUE,
  3508. 3508       'default' => '',
  3509. 3509     ),
  3510. 3510     'load_functions' => array(
  3511. 3511       'type' => 'text',
  3512. 3512       'not null' => TRUE,
  3513. 3513     ),
  3514. 3514     'to_arg_functions' => array(
  3515. 3515       'type' => 'text',
  3516. 3516       'not null' => TRUE,
  3517. 3517     ),
  3518. 3518     'access_callback' => array(
  3519. 3519       'type' => 'varchar',
  3520. 3520       'length' => 255,
  3521. 3521       'not null' => TRUE,
  3522. 3522       'default' => '',
  3523. 3523     ),
  3524. 3524     'access_arguments' => array(
  3525. 3525       'type' => 'text',
  3526. 3526       'not null' => FALSE,
  3527. 3527     ),
  3528. 3528     'page_callback' => array(
  3529. 3529       'type' => 'varchar',
  3530. 3530       'length' => 255,
  3531. 3531       'not null' => TRUE,
  3532. 3532       'default' => '',
  3533. 3533     ),
  3534. 3534     'page_arguments' => array(
  3535. 3535       'type' => 'text',
  3536. 3536       'not null' => FALSE,
  3537. 3537     ),
  3538. 3538     'fit' => array(
  3539. 3539       'type' => 'int',
  3540. 3540       'not null' => TRUE,
  3541. 3541       'default' => 0,
  3542. 3542     ),
  3543. 3543     'number_parts' => array(
  3544. 3544       'type' => 'int',
  3545. 3545       'not null' => TRUE,
  3546. 3546       'default' => 0,
  3547. 3547       'size' => 'small',
  3548. 3548     ),
  3549. 3549     'tab_parent' => array(
  3550. 3550       'type' => 'varchar',
  3551. 3551       'length' => 255,
  3552. 3552       'not null' => TRUE,
  3553. 3553       'default' => '',
  3554. 3554     ),
  3555. 3555     'tab_root' => array(
  3556. 3556       'type' => 'varchar',
  3557. 3557       'length' => 255,
  3558. 3558       'not null' => TRUE,
  3559. 3559       'default' => '',
  3560. 3560     ),
  3561. 3561     'title' => array(
  3562. 3562       'type' => 'varchar',
  3563. 3563       'length' => 255,
  3564. 3564       'not null' => TRUE,
  3565. 3565       'default' => '',
  3566. 3566     ),
  3567. 3567     'title_callback' => array(
  3568. 3568       'type' => 'varchar',
  3569. 3569       'length' => 255,
  3570. 3570       'not null' => TRUE,
  3571. 3571       'default' => '',
  3572. 3572     ),
  3573. 3573     'title_arguments' => array(
  3574. 3574       'type' => 'varchar',
  3575. 3575       'length' => 255,
  3576. 3576       'not null' => TRUE,
  3577. 3577       'default' => '',
  3578. 3578     ),
  3579. 3579     'type' => array(
  3580. 3580       'type' => 'int',
  3581. 3581       'not null' => TRUE,
  3582. 3582       'default' => 0,
  3583. 3583     ),
  3584. 3584     'block_callback' => array(
  3585. 3585       'type' => 'varchar',
  3586. 3586       'length' => 255,
  3587. 3587       'not null' => TRUE,
  3588. 3588       'default' => '',
  3589. 3589     ),
  3590. 3590     'description' => array(
  3591. 3591       'type' => 'text',
  3592. 3592       'not null' => TRUE,
  3593. 3593     ),
  3594. 3594     'position' => array(
  3595. 3595       'type' => 'varchar',
  3596. 3596       'length' => 255,
  3597. 3597       'not null' => TRUE,
  3598. 3598       'default' => '',
  3599. 3599     ),
  3600. 3600     'weight' => array(
  3601. 3601       'type' => 'int',
  3602. 3602       'not null' => TRUE,
  3603. 3603       'default' => 0,
  3604. 3604     ),
  3605. 3605     'file' => array(
  3606. 3606       'type' => 'text',
  3607. 3607       'size' => 'medium',
  3608. 3608     ),
  3609. 3609   ),
  3610. 3610   'indexes' => array(
  3611. 3611     'fit' => array(
  3612. 3612       'fit',
  3613. 3613     ),
  3614. 3614     'tab_parent' => array(
  3615. 3615       'tab_parent',
  3616. 3616     ),
  3617. 3617     'tab_root_weight_title' => array(
  3618. 3618       array(
  3619. 3619         'tab_root',
  3620. 3620         64,
  3621. 3621       ),
  3622. 3622       'weight',
  3623. 3623       'title',
  3624. 3624     ),
  3625. 3625   ),
  3626. 3626   'primary key' => array(
  3627. 3627     'path',
  3628. 3628   ),
  3629. 3629   'module' => 'system',
  3630. 3630   'name' => 'menu_router',
  3631. 3631 ));
  3632. 3632 db_insert('menu_router')->fields(array(
  3633. 3633   'path',
  3634. 3634   'load_functions',
  3635. 3635   'to_arg_functions',
  3636. 3636   'access_callback',
  3637. 3637   'access_arguments',
  3638. 3638   'page_callback',
  3639. 3639   'page_arguments',
  3640. 3640   'fit',
  3641. 3641   'number_parts',
  3642. 3642   'tab_parent',
  3643. 3643   'tab_root',
  3644. 3644   'title',
  3645. 3645   'title_callback',
  3646. 3646   'title_arguments',
  3647. 3647   'type',
  3648. 3648   'block_callback',
  3649. 3649   'description',
  3650. 3650   'position',
  3651. 3651   'weight',
  3652. 3652   'file',
  3653. 3653 ))
  3654. 3654 ->values(array(
  3655. 3655   'path' => 'admin',
  3656. 3656   'load_functions' => '',
  3657. 3657   'to_arg_functions' => '',
  3658. 3658   'access_callback' => 'user_access',
  3659. 3659   'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
  3660. 3660   'page_callback' => 'system_main_admin_page',
  3661. 3661   'page_arguments' => 'a:0:{}',
  3662. 3662   'fit' => '1',
  3663. 3663   'number_parts' => '1',
  3664. 3664   'tab_parent' => '',
  3665. 3665   'tab_root' => 'admin',
  3666. 3666   'title' => 'Administer',
  3667. 3667   'title_callback' => 't',
  3668. 3668   'title_arguments' => '',
  3669. 3669   'type' => '6',
  3670. 3670   'block_callback' => '',
  3671. 3671   'description' => '',
  3672. 3672   'position' => '',
  3673. 3673   'weight' => '9',
  3674. 3674   'file' => 'modules/system/system.admin.inc',
  3675. 3675 ))
  3676. 3676 ->values(array(
  3677. 3677   'path' => 'admin/build',
  3678. 3678   'load_functions' => '',
  3679. 3679   'to_arg_functions' => '',
  3680. 3680   'access_callback' => 'user_access',
  3681. 3681   'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
  3682. 3682   'page_callback' => 'system_admin_menu_block_page',
  3683. 3683   'page_arguments' => 'a:0:{}',
  3684. 3684   'fit' => '3',
  3685. 3685   'number_parts' => '2',
  3686. 3686   'tab_parent' => '',
  3687. 3687   'tab_root' => 'admin/build',
  3688. 3688   'title' => 'Site building',
  3689. 3689   'title_callback' => 't',
  3690. 3690   'title_arguments' => '',
  3691. 3691   'type' => '6',
  3692. 3692   'block_callback' => '',
  3693. 3693   'description' => 'Control how your site looks and feels.',
  3694. 3694   'position' => 'right',
  3695. 3695   'weight' => '-10',
  3696. 3696   'file' => 'modules/system/system.admin.inc',
  3697. 3697 ))
  3698. 3698 ->values(array(
  3699. 3699   'path' => 'admin/build/block',
  3700. 3700   'load_functions' => '',
  3701. 3701   'to_arg_functions' => '',
  3702. 3702   'access_callback' => 'user_access',
  3703. 3703   'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
  3704. 3704   'page_callback' => 'block_admin_display',
  3705. 3705   'page_arguments' => 'a:0:{}',
  3706. 3706   'fit' => '7',
  3707. 3707   'number_parts' => '3',
  3708. 3708   'tab_parent' => '',
  3709. 3709   'tab_root' => 'admin/build/block',
  3710. 3710   'title' => 'Blocks',
  3711. 3711   'title_callback' => 't',
  3712. 3712   'title_arguments' => '',
  3713. 3713   'type' => '6',
  3714. 3714   'block_callback' => '',
  3715. 3715   'description' => "Configure what block content appears in your site's sidebars and other regions.",
  3716. 3716   'position' => '',
  3717. 3717   'weight' => '0',
  3718. 3718   'file' => 'modules/block/block.admin.inc',
  3719. 3719 ))
  3720. 3720 ->values(array(
  3721. 3721   'path' => 'admin/build/block/add',
  3722. 3722   'load_functions' => '',
  3723. 3723   'to_arg_functions' => '',
  3724. 3724   'access_callback' => 'user_access',
  3725. 3725   'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
  3726. 3726   'page_callback' => 'drupal_get_form',
  3727. 3727   'page_arguments' => 'a:1:{i:0;s:20:"block_add_block_form";}',
  3728. 3728   'fit' => '15',
  3729. 3729   'number_parts' => '4',
  3730. 3730   'tab_parent' => 'admin/build/block',
  3731. 3731   'tab_root' => 'admin/build/block',
  3732. 3732   'title' => 'Add block',
  3733. 3733   'title_callback' => 't',
  3734. 3734   'title_arguments' => '',
  3735. 3735   'type' => '128',
  3736. 3736   'block_callback' => '',
  3737. 3737   'description' => '',
  3738. 3738   'position' => '',
  3739. 3739   'weight' => '0',
  3740. 3740   'file' => 'modules/block/block.admin.inc',
  3741. 3741 ))
  3742. 3742 ->values(array(
  3743. 3743   'path' => 'admin/build/block/configure',
  3744. 3744   'load_functions' => '',
  3745. 3745   'to_arg_functions' => '',
  3746. 3746   'access_callback' => 'user_access',
  3747. 3747   'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
  3748. 3748   'page_callback' => 'drupal_get_form',
  3749. 3749   'page_arguments' => 'a:1:{i:0;s:21:"block_admin_configure";}',
  3750. 3750   'fit' => '15',
  3751. 3751   'number_parts' => '4',
  3752. 3752   'tab_parent' => '',
  3753. 3753   'tab_root' => 'admin/build/block/configure',
  3754. 3754   'title' => 'Configure block',
  3755. 3755   'title_callback' => 't',
  3756. 3756   'title_arguments' => '',
  3757. 3757   'type' => '4',
  3758. 3758   'block_callback' => '',
  3759. 3759   'description' => '',
  3760. 3760   'position' => '',
  3761. 3761   'weight' => '0',
  3762. 3762   'file' => 'modules/block/block.admin.inc',
  3763. 3763 ))
  3764. 3764 ->values(array(
  3765. 3765   'path' => 'admin/build/block/delete',
  3766. 3766   'load_functions' => '',
  3767. 3767   'to_arg_functions' => '',
  3768. 3768   'access_callback' => 'user_access',
  3769. 3769   'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
  3770. 3770   'page_callback' => 'drupal_get_form',
  3771. 3771   'page_arguments' => 'a:1:{i:0;s:16:"block_box_delete";}',
  3772. 3772   'fit' => '15',
  3773. 3773   'number_parts' => '4',
  3774. 3774   'tab_parent' => '',
  3775. 3775   'tab_root' => 'admin/build/block/delete',
  3776. 3776   'title' => 'Delete block',
  3777. 3777   'title_callback' => 't',
  3778. 3778   'title_arguments' => '',
  3779. 3779   'type' => '4',
  3780. 3780   'block_callback' => '',
  3781. 3781   'description' => '',
  3782. 3782   'position' => '',
  3783. 3783   'weight' => '0',
  3784. 3784   'file' => 'modules/block/block.admin.inc',
  3785. 3785 ))
  3786. 3786 ->values(array(
  3787. 3787   'path' => 'admin/build/block/list',
  3788. 3788   'load_functions' => '',
  3789. 3789   'to_arg_functions' => '',
  3790. 3790   'access_callback' => 'user_access',
  3791. 3791   'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
  3792. 3792   'page_callback' => 'block_admin_display',
  3793. 3793   'page_arguments' => 'a:0:{}',
  3794. 3794   'fit' => '15',
  3795. 3795   'number_parts' => '4',
  3796. 3796   'tab_parent' => 'admin/build/block',
  3797. 3797   'tab_root' => 'admin/build/block',
  3798. 3798   'title' => 'List',
  3799. 3799   'title_callback' => 't',
  3800. 3800   'title_arguments' => '',
  3801. 3801   'type' => '136',
  3802. 3802   'block_callback' => '',
  3803. 3803   'description' => '',
  3804. 3804   'position' => '',
  3805. 3805   'weight' => '-10',
  3806. 3806   'file' => 'modules/block/block.admin.inc',
  3807. 3807 ))
  3808. 3808 ->values(array(
  3809. 3809   'path' => 'admin/build/block/list/bluemarine',
  3810. 3810   'load_functions' => '',
  3811. 3811   'to_arg_functions' => '',
  3812. 3812   'access_callback' => '_block_themes_access',
  3813. 3813   'access_arguments' => 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:33:"themes/bluemarine/bluemarine.info";s:4:"name";s:10:"bluemarine";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"0";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:13:{s:4:"name";s:10:"Bluemarine";s:11:"description";s:66:"Table-based multi-column theme with a marine and ash color scheme.";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:27:"themes/bluemarine/style.css";}}s:7:"scripts";a:1:{s:9:"script.js";s:27:"themes/bluemarine/script.js";}s:10:"screenshot";s:32:"themes/bluemarine/screenshot.png";s:3:"php";s:5:"4.3.5";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:27:"themes/bluemarine/style.css";}}s:6:"engine";s:11:"phptemplate";}}',
  3814. 3814   'page_callback' => 'block_admin_display',
  3815. 3815   'page_arguments' => 'a:1:{i:0;s:10:"bluemarine";}',
  3816. 3816   'fit' => '31',
  3817. 3817   'number_parts' => '5',
  3818. 3818   'tab_parent' => 'admin/build/block/list',
  3819. 3819   'tab_root' => 'admin/build/block',
  3820. 3820   'title' => 'Bluemarine',
  3821. 3821   'title_callback' => 't',
  3822. 3822   'title_arguments' => '',
  3823. 3823   'type' => '128',
  3824. 3824   'block_callback' => '',
  3825. 3825   'description' => '',
  3826. 3826   'position' => '',
  3827. 3827   'weight' => '0',
  3828. 3828   'file' => 'modules/block/block.admin.inc',
  3829. 3829 ))
  3830. 3830 ->values(array(
  3831. 3831   'path' => 'admin/build/block/list/chameleon',
  3832. 3832   'load_functions' => '',
  3833. 3833   'to_arg_functions' => '',
  3834. 3834   'access_callback' => '_block_themes_access',
  3835. 3835   'access_arguments' => 'a:1:{i:0;O:8:"stdClass":11:{s:8:"filename";s:31:"themes/chameleon/chameleon.info";s:4:"name";s:9:"chameleon";s:4:"type";s:5:"theme";s:5:"owner";s:32:"themes/chameleon/chameleon.theme";s:6:"status";s:1:"0";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:12:{s:4:"name";s:9:"Chameleon";s:11:"description";s:42:"Minimalist tabled theme with light colors.";s:7:"regions";a:2:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";}s:8:"features";a:4:{i:0;s:4:"logo";i:1;s:7:"favicon";i:2;s:4:"name";i:3;s:6:"slogan";}s:11:"stylesheets";a:1:{s:3:"all";a:2:{s:9:"style.css";s:26:"themes/chameleon/style.css";s:10:"common.css";s:27:"themes/chameleon/common.css";}}s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:7:"scripts";a:1:{s:9:"script.js";s:26:"themes/chameleon/script.js";}s:10:"screenshot";s:31:"themes/chameleon/screenshot.png";s:3:"php";s:5:"4.3.5";}s:11:"stylesheets";a:1:{s:3:"all";a:2:{s:9:"style.css";s:26:"themes/chameleon/style.css";s:10:"common.css";s:27:"themes/chameleon/common.css";}}}}',
  3836. 3836   'page_callback' => 'block_admin_display',
  3837. 3837   'page_arguments' => 'a:1:{i:0;s:9:"chameleon";}',
  3838. 3838   'fit' => '31',
  3839. 3839   'number_parts' => '5',
  3840. 3840   'tab_parent' => 'admin/build/block/list',
  3841. 3841   'tab_root' => 'admin/build/block',
  3842. 3842   'title' => 'Chameleon',
  3843. 3843   'title_callback' => 't',
  3844. 3844   'title_arguments' => '',
  3845. 3845   'type' => '128',
  3846. 3846   'block_callback' => '',
  3847. 3847   'description' => '',
  3848. 3848   'position' => '',
  3849. 3849   'weight' => '0',
  3850. 3850   'file' => 'modules/block/block.admin.inc',
  3851. 3851 ))
  3852. 3852 ->values(array(
  3853. 3853   'path' => 'admin/build/block/list/garland',
  3854. 3854   'load_functions' => '',
  3855. 3855   'to_arg_functions' => '',
  3856. 3856   'access_callback' => '_block_themes_access',
  3857. 3857   'access_arguments' => 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:27:"themes/garland/garland.info";s:4:"name";s:7:"garland";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"1";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:13:{s:4:"name";s:7:"Garland";s:11:"description";s:66:"Tableless, recolorable, multi-column, fluid width theme (default).";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";s:11:"stylesheets";a:2:{s:3:"all";a:1:{s:9:"style.css";s:24:"themes/garland/style.css";}s:5:"print";a:1:{s:9:"print.css";s:24:"themes/garland/print.css";}}s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:7:"scripts";a:1:{s:9:"script.js";s:24:"themes/garland/script.js";}s:10:"screenshot";s:29:"themes/garland/screenshot.png";s:3:"php";s:5:"4.3.5";}s:11:"stylesheets";a:2:{s:3:"all";a:1:{s:9:"style.css";s:24:"themes/garland/style.css";}s:5:"print";a:1:{s:9:"print.css";s:24:"themes/garland/print.css";}}s:6:"engine";s:11:"phptemplate";}}',
  3858. 3858   'page_callback' => 'block_admin_display',
  3859. 3859   'page_arguments' => 'a:1:{i:0;s:7:"garland";}',
  3860. 3860   'fit' => '31',
  3861. 3861   'number_parts' => '5',
  3862. 3862   'tab_parent' => 'admin/build/block/list',
  3863. 3863   'tab_root' => 'admin/build/block',
  3864. 3864   'title' => 'Garland',
  3865. 3865   'title_callback' => 't',
  3866. 3866   'title_arguments' => '',
  3867. 3867   'type' => '136',
  3868. 3868   'block_callback' => '',
  3869. 3869   'description' => '',
  3870. 3870   'position' => '',
  3871. 3871   'weight' => '-10',
  3872. 3872   'file' => 'modules/block/block.admin.inc',
  3873. 3873 ))
  3874. 3874 ->values(array(
  3875. 3875   'path' => 'admin/build/block/list/js',
  3876. 3876   'load_functions' => '',
  3877. 3877   'to_arg_functions' => '',
  3878. 3878   'access_callback' => 'user_access',
  3879. 3879   'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
  3880. 3880   'page_callback' => 'block_admin_display_js',
  3881. 3881   'page_arguments' => 'a:0:{}',
  3882. 3882   'fit' => '31',
  3883. 3883   'number_parts' => '5',
  3884. 3884   'tab_parent' => '',
  3885. 3885   'tab_root' => 'admin/build/block/list/js',
  3886. 3886   'title' => 'JavaScript List Form',
  3887. 3887   'title_callback' => 't',
  3888. 3888   'title_arguments' => '',
  3889. 3889   'type' => '4',
  3890. 3890   'block_callback' => '',
  3891. 3891   'description' => '',
  3892. 3892   'position' => '',
  3893. 3893   'weight' => '0',
  3894. 3894   'file' => 'modules/block/block.admin.inc',
  3895. 3895 ))
  3896. 3896 ->values(array(
  3897. 3897   'path' => 'admin/build/block/list/marvin',
  3898. 3898   'load_functions' => '',
  3899. 3899   'to_arg_functions' => '',
  3900. 3900   'access_callback' => '_block_themes_access',
  3901. 3901   'access_arguments' => 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:35:"themes/chameleon/marvin/marvin.info";s:4:"name";s:6:"marvin";s:4:"type";s:5:"theme";s:5:"owner";s:0:"";s:6:"status";s:1:"0";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:13:{s:4:"name";s:6:"Marvin";s:11:"description";s:31:"Boxy tabled theme in all grays.";s:7:"regions";a:2:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";}s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:10:"base theme";s:9:"chameleon";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:33:"themes/chameleon/marvin/style.css";}}s:7:"scripts";a:1:{s:9:"script.js";s:33:"themes/chameleon/marvin/script.js";}s:10:"screenshot";s:38:"themes/chameleon/marvin/screenshot.png";s:3:"php";s:5:"4.3.5";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:33:"themes/chameleon/marvin/style.css";}}s:10:"base_theme";s:9:"chameleon";}}',
  3902. 3902   'page_callback' => 'block_admin_display',
  3903. 3903   'page_arguments' => 'a:1:{i:0;s:6:"marvin";}',
  3904. 3904   'fit' => '31',
  3905. 3905   'number_parts' => '5',
  3906. 3906   'tab_parent' => 'admin/build/block/list',
  3907. 3907   'tab_root' => 'admin/build/block',
  3908. 3908   'title' => 'Marvin',
  3909. 3909   'title_callback' => 't',
  3910. 3910   'title_arguments' => '',
  3911. 3911   'type' => '128',
  3912. 3912   'block_callback' => '',
  3913. 3913   'description' => '',
  3914. 3914   'position' => '',
  3915. 3915   'weight' => '0',
  3916. 3916   'file' => 'modules/block/block.admin.inc',
  3917. 3917 ))
  3918. 3918 ->values(array(
  3919. 3919   'path' => 'admin/build/block/list/minnelli',
  3920. 3920   'load_functions' => '',
  3921. 3921   'to_arg_functions' => '',
  3922. 3922   'access_callback' => '_block_themes_access',
  3923. 3923   'access_arguments' => 'a:1:{i:0;O:8:"stdClass":13:{s:8:"filename";s:37:"themes/garland/minnelli/minnelli.info";s:4:"name";s:8:"minnelli";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"0";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:14:{s:4:"name";s:8:"Minnelli";s:11:"description";s:56:"Tableless, recolorable, multi-column, fixed width theme.";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:10:"base theme";s:7:"garland";s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:12:"minnelli.css";s:36:"themes/garland/minnelli/minnelli.css";}}s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:7:"scripts";a:1:{s:9:"script.js";s:33:"themes/garland/minnelli/script.js";}s:10:"screenshot";s:38:"themes/garland/minnelli/screenshot.png";s:3:"php";s:5:"4.3.5";s:6:"engine";s:11:"phptemplate";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:12:"minnelli.css";s:36:"themes/garland/minnelli/minnelli.css";}}s:6:"engine";s:11:"phptemplate";s:10:"base_theme";s:7:"garland";}}',
  3924. 3924   'page_callback' => 'block_admin_display',
  3925. 3925   'page_arguments' => 'a:1:{i:0;s:8:"minnelli";}',
  3926. 3926   'fit' => '31',
  3927. 3927   'number_parts' => '5',
  3928. 3928   'tab_parent' => 'admin/build/block/list',
  3929. 3929   'tab_root' => 'admin/build/block',
  3930. 3930   'title' => 'Minnelli',
  3931. 3931   'title_callback' => 't',
  3932. 3932   'title_arguments' => '',
  3933. 3933   'type' => '128',
  3934. 3934   'block_callback' => '',
  3935. 3935   'description' => '',
  3936. 3936   'position' => '',
  3937. 3937   'weight' => '0',
  3938. 3938   'file' => 'modules/block/block.admin.inc',
  3939. 3939 ))
  3940. 3940 ->values(array(
  3941. 3941   'path' => 'admin/build/block/list/pushbutton',
  3942. 3942   'load_functions' => '',
  3943. 3943   'to_arg_functions' => '',
  3944. 3944   'access_callback' => '_block_themes_access',
  3945. 3945   'access_arguments' => 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:33:"themes/pushbutton/pushbutton.info";s:4:"name";s:10:"pushbutton";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"0";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:13:{s:4:"name";s:10:"Pushbutton";s:11:"description";s:52:"Tabled, multi-column theme in blue and orange tones.";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:27:"themes/pushbutton/style.css";}}s:7:"scripts";a:1:{s:9:"script.js";s:27:"themes/pushbutton/script.js";}s:10:"screenshot";s:32:"themes/pushbutton/screenshot.png";s:3:"php";s:5:"4.3.5";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:27:"themes/pushbutton/style.css";}}s:6:"engine";s:11:"phptemplate";}}',
  3946. 3946   'page_callback' => 'block_admin_display',
  3947. 3947   'page_arguments' => 'a:1:{i:0;s:10:"pushbutton";}',
  3948. 3948   'fit' => '31',
  3949. 3949   'number_parts' => '5',
  3950. 3950   'tab_parent' => 'admin/build/block/list',
  3951. 3951   'tab_root' => 'admin/build/block',
  3952. 3952   'title' => 'Pushbutton',
  3953. 3953   'title_callback' => 't',
  3954. 3954   'title_arguments' => '',
  3955. 3955   'type' => '128',
  3956. 3956   'block_callback' => '',
  3957. 3957   'description' => '',
  3958. 3958   'position' => '',
  3959. 3959   'weight' => '0',
  3960. 3960   'file' => 'modules/block/block.admin.inc',
  3961. 3961 ))
  3962. 3962 ->values(array(
  3963. 3963   'path' => 'admin/build/modules',
  3964. 3964   'load_functions' => '',
  3965. 3965   'to_arg_functions' => '',
  3966. 3966   'access_callback' => 'user_access',
  3967. 3967   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
  3968. 3968   'page_callback' => 'drupal_get_form',
  3969. 3969   'page_arguments' => 'a:1:{i:0;s:14:"system_modules";}',
  3970. 3970   'fit' => '7',
  3971. 3971   'number_parts' => '3',
  3972. 3972   'tab_parent' => '',
  3973. 3973   'tab_root' => 'admin/build/modules',
  3974. 3974   'title' => 'Modules',
  3975. 3975   'title_callback' => 't',
  3976. 3976   'title_arguments' => '',
  3977. 3977   'type' => '6',
  3978. 3978   'block_callback' => '',
  3979. 3979   'description' => 'Enable or disable add-on modules for your site.',
  3980. 3980   'position' => '',
  3981. 3981   'weight' => '0',
  3982. 3982   'file' => 'modules/system/system.admin.inc',
  3983. 3983 ))
  3984. 3984 ->values(array(
  3985. 3985   'path' => 'admin/build/modules/list',
  3986. 3986   'load_functions' => '',
  3987. 3987   'to_arg_functions' => '',
  3988. 3988   'access_callback' => 'user_access',
  3989. 3989   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
  3990. 3990   'page_callback' => 'drupal_get_form',
  3991. 3991   'page_arguments' => 'a:1:{i:0;s:14:"system_modules";}',
  3992. 3992   'fit' => '15',
  3993. 3993   'number_parts' => '4',
  3994. 3994   'tab_parent' => 'admin/build/modules',
  3995. 3995   'tab_root' => 'admin/build/modules',
  3996. 3996   'title' => 'List',
  3997. 3997   'title_callback' => 't',
  3998. 3998   'title_arguments' => '',
  3999. 3999   'type' => '136',
  4000. 4000   'block_callback' => '',
  4001. 4001   'description' => '',
  4002. 4002   'position' => '',
  4003. 4003   'weight' => '0',
  4004. 4004   'file' => 'modules/system/system.admin.inc',
  4005. 4005 ))
  4006. 4006 ->values(array(
  4007. 4007   'path' => 'admin/build/modules/list/confirm',
  4008. 4008   'load_functions' => '',
  4009. 4009   'to_arg_functions' => '',
  4010. 4010   'access_callback' => 'user_access',
  4011. 4011   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
  4012. 4012   'page_callback' => 'drupal_get_form',
  4013. 4013   'page_arguments' => 'a:1:{i:0;s:14:"system_modules";}',
  4014. 4014   'fit' => '31',
  4015. 4015   'number_parts' => '5',
  4016. 4016   'tab_parent' => '',
  4017. 4017   'tab_root' => 'admin/build/modules/list/confirm',
  4018. 4018   'title' => 'List',
  4019. 4019   'title_callback' => 't',
  4020. 4020   'title_arguments' => '',
  4021. 4021   'type' => '4',
  4022. 4022   'block_callback' => '',
  4023. 4023   'description' => '',
  4024. 4024   'position' => '',
  4025. 4025   'weight' => '0',
  4026. 4026   'file' => 'modules/system/system.admin.inc',
  4027. 4027 ))
  4028. 4028 ->values(array(
  4029. 4029   'path' => 'admin/build/modules/uninstall',
  4030. 4030   'load_functions' => '',
  4031. 4031   'to_arg_functions' => '',
  4032. 4032   'access_callback' => 'user_access',
  4033. 4033   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
  4034. 4034   'page_callback' => 'drupal_get_form',
  4035. 4035   'page_arguments' => 'a:1:{i:0;s:24:"system_modules_uninstall";}',
  4036. 4036   'fit' => '15',
  4037. 4037   'number_parts' => '4',
  4038. 4038   'tab_parent' => 'admin/build/modules',
  4039. 4039   'tab_root' => 'admin/build/modules',
  4040. 4040   'title' => 'Uninstall',
  4041. 4041   'title_callback' => 't',
  4042. 4042   'title_arguments' => '',
  4043. 4043   'type' => '128',
  4044. 4044   'block_callback' => '',
  4045. 4045   'description' => '',
  4046. 4046   'position' => '',
  4047. 4047   'weight' => '0',
  4048. 4048   'file' => 'modules/system/system.admin.inc',
  4049. 4049 ))
  4050. 4050 ->values(array(
  4051. 4051   'path' => 'admin/build/modules/uninstall/confirm',
  4052. 4052   'load_functions' => '',
  4053. 4053   'to_arg_functions' => '',
  4054. 4054   'access_callback' => 'user_access',
  4055. 4055   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
  4056. 4056   'page_callback' => 'drupal_get_form',
  4057. 4057   'page_arguments' => 'a:1:{i:0;s:24:"system_modules_uninstall";}',
  4058. 4058   'fit' => '31',
  4059. 4059   'number_parts' => '5',
  4060. 4060   'tab_parent' => '',
  4061. 4061   'tab_root' => 'admin/build/modules/uninstall/confirm',
  4062. 4062   'title' => 'Uninstall',
  4063. 4063   'title_callback' => 't',
  4064. 4064   'title_arguments' => '',
  4065. 4065   'type' => '4',
  4066. 4066   'block_callback' => '',
  4067. 4067   'description' => '',
  4068. 4068   'position' => '',
  4069. 4069   'weight' => '0',
  4070. 4070   'file' => 'modules/system/system.admin.inc',
  4071. 4071 ))
  4072. 4072 ->values(array(
  4073. 4073   'path' => 'admin/build/themes',
  4074. 4074   'load_functions' => '',
  4075. 4075   'to_arg_functions' => '',
  4076. 4076   'access_callback' => 'user_access',
  4077. 4077   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
  4078. 4078   'page_callback' => 'drupal_get_form',
  4079. 4079   'page_arguments' => 'a:2:{i:0;s:18:"system_themes_form";i:1;N;}',
  4080. 4080   'fit' => '7',
  4081. 4081   'number_parts' => '3',
  4082. 4082   'tab_parent' => '',
  4083. 4083   'tab_root' => 'admin/build/themes',
  4084. 4084   'title' => 'Themes',
  4085. 4085   'title_callback' => 't',
  4086. 4086   'title_arguments' => '',
  4087. 4087   'type' => '6',
  4088. 4088   'block_callback' => '',
  4089. 4089   'description' => 'Change which theme your site uses or allows users to set.',
  4090. 4090   'position' => '',
  4091. 4091   'weight' => '0',
  4092. 4092   'file' => 'modules/system/system.admin.inc',
  4093. 4093 ))
  4094. 4094 ->values(array(
  4095. 4095   'path' => 'admin/build/themes/select',
  4096. 4096   'load_functions' => '',
  4097. 4097   'to_arg_functions' => '',
  4098. 4098   'access_callback' => 'user_access',
  4099. 4099   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
  4100. 4100   'page_callback' => 'drupal_get_form',
  4101. 4101   'page_arguments' => 'a:2:{i:0;s:18:"system_themes_form";i:1;N;}',
  4102. 4102   'fit' => '15',
  4103. 4103   'number_parts' => '4',
  4104. 4104   'tab_parent' => 'admin/build/themes',
  4105. 4105   'tab_root' => 'admin/build/themes',
  4106. 4106   'title' => 'List',
  4107. 4107   'title_callback' => 't',
  4108. 4108   'title_arguments' => '',
  4109. 4109   'type' => '136',
  4110. 4110   'block_callback' => '',
  4111. 4111   'description' => 'Select the default theme.',
  4112. 4112   'position' => '',
  4113. 4113   'weight' => '-1',
  4114. 4114   'file' => 'modules/system/system.admin.inc',
  4115. 4115 ))
  4116. 4116 ->values(array(
  4117. 4117   'path' => 'admin/build/themes/settings',
  4118. 4118   'load_functions' => '',
  4119. 4119   'to_arg_functions' => '',
  4120. 4120   'access_callback' => 'user_access',
  4121. 4121   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
  4122. 4122   'page_callback' => 'drupal_get_form',
  4123. 4123   'page_arguments' => 'a:1:{i:0;s:21:"system_theme_settings";}',
  4124. 4124   'fit' => '15',
  4125. 4125   'number_parts' => '4',
  4126. 4126   'tab_parent' => 'admin/build/themes',
  4127. 4127   'tab_root' => 'admin/build/themes',
  4128. 4128   'title' => 'Configure',
  4129. 4129   'title_callback' => 't',
  4130. 4130   'title_arguments' => '',
  4131. 4131   'type' => '128',
  4132. 4132   'block_callback' => '',
  4133. 4133   'description' => '',
  4134. 4134   'position' => '',
  4135. 4135   'weight' => '0',
  4136. 4136   'file' => 'modules/system/system.admin.inc',
  4137. 4137 ))
  4138. 4138 ->values(array(
  4139. 4139   'path' => 'admin/build/themes/settings/bluemarine',
  4140. 4140   'load_functions' => '',
  4141. 4141   'to_arg_functions' => '',
  4142. 4142   'access_callback' => '_system_themes_access',
  4143. 4143   'access_arguments' => 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:33:"themes/bluemarine/bluemarine.info";s:4:"name";s:10:"bluemarine";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"0";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:13:{s:4:"name";s:10:"Bluemarine";s:11:"description";s:66:"Table-based multi-column theme with a marine and ash color scheme.";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:27:"themes/bluemarine/style.css";}}s:7:"scripts";a:1:{s:9:"script.js";s:27:"themes/bluemarine/script.js";}s:10:"screenshot";s:32:"themes/bluemarine/screenshot.png";s:3:"php";s:5:"4.3.5";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:27:"themes/bluemarine/style.css";}}s:6:"engine";s:11:"phptemplate";}}',
  4144. 4144   'page_callback' => 'drupal_get_form',
  4145. 4145   'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:10:"bluemarine";}',
  4146. 4146   'fit' => '31',
  4147. 4147   'number_parts' => '5',
  4148. 4148   'tab_parent' => 'admin/build/themes/settings',
  4149. 4149   'tab_root' => 'admin/build/themes',
  4150. 4150   'title' => 'Bluemarine',
  4151. 4151   'title_callback' => 't',
  4152. 4152   'title_arguments' => '',
  4153. 4153   'type' => '128',
  4154. 4154   'block_callback' => '',
  4155. 4155   'description' => '',
  4156. 4156   'position' => '',
  4157. 4157   'weight' => '0',
  4158. 4158   'file' => 'modules/system/system.admin.inc',
  4159. 4159 ))
  4160. 4160 ->values(array(
  4161. 4161   'path' => 'admin/build/themes/settings/chameleon',
  4162. 4162   'load_functions' => '',
  4163. 4163   'to_arg_functions' => '',
  4164. 4164   'access_callback' => '_system_themes_access',
  4165. 4165   'access_arguments' => 'a:1:{i:0;O:8:"stdClass":11:{s:8:"filename";s:31:"themes/chameleon/chameleon.info";s:4:"name";s:9:"chameleon";s:4:"type";s:5:"theme";s:5:"owner";s:32:"themes/chameleon/chameleon.theme";s:6:"status";s:1:"0";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:12:{s:4:"name";s:9:"Chameleon";s:11:"description";s:42:"Minimalist tabled theme with light colors.";s:7:"regions";a:2:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";}s:8:"features";a:4:{i:0;s:4:"logo";i:1;s:7:"favicon";i:2;s:4:"name";i:3;s:6:"slogan";}s:11:"stylesheets";a:1:{s:3:"all";a:2:{s:9:"style.css";s:26:"themes/chameleon/style.css";s:10:"common.css";s:27:"themes/chameleon/common.css";}}s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:7:"scripts";a:1:{s:9:"script.js";s:26:"themes/chameleon/script.js";}s:10:"screenshot";s:31:"themes/chameleon/screenshot.png";s:3:"php";s:5:"4.3.5";}s:11:"stylesheets";a:1:{s:3:"all";a:2:{s:9:"style.css";s:26:"themes/chameleon/style.css";s:10:"common.css";s:27:"themes/chameleon/common.css";}}}}',
  4166. 4166   'page_callback' => 'drupal_get_form',
  4167. 4167   'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:9:"chameleon";}',
  4168. 4168   'fit' => '31',
  4169. 4169   'number_parts' => '5',
  4170. 4170   'tab_parent' => 'admin/build/themes/settings',
  4171. 4171   'tab_root' => 'admin/build/themes',
  4172. 4172   'title' => 'Chameleon',
  4173. 4173   'title_callback' => 't',
  4174. 4174   'title_arguments' => '',
  4175. 4175   'type' => '128',
  4176. 4176   'block_callback' => '',
  4177. 4177   'description' => '',
  4178. 4178   'position' => '',
  4179. 4179   'weight' => '0',
  4180. 4180   'file' => 'modules/system/system.admin.inc',
  4181. 4181 ))
  4182. 4182 ->values(array(
  4183. 4183   'path' => 'admin/build/themes/settings/garland',
  4184. 4184   'load_functions' => '',
  4185. 4185   'to_arg_functions' => '',
  4186. 4186   'access_callback' => '_system_themes_access',
  4187. 4187   'access_arguments' => 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:27:"themes/garland/garland.info";s:4:"name";s:7:"garland";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"1";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:13:{s:4:"name";s:7:"Garland";s:11:"description";s:66:"Tableless, recolorable, multi-column, fluid width theme (default).";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";s:11:"stylesheets";a:2:{s:3:"all";a:1:{s:9:"style.css";s:24:"themes/garland/style.css";}s:5:"print";a:1:{s:9:"print.css";s:24:"themes/garland/print.css";}}s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:7:"scripts";a:1:{s:9:"script.js";s:24:"themes/garland/script.js";}s:10:"screenshot";s:29:"themes/garland/screenshot.png";s:3:"php";s:5:"4.3.5";}s:11:"stylesheets";a:2:{s:3:"all";a:1:{s:9:"style.css";s:24:"themes/garland/style.css";}s:5:"print";a:1:{s:9:"print.css";s:24:"themes/garland/print.css";}}s:6:"engine";s:11:"phptemplate";}}',
  4188. 4188   'page_callback' => 'drupal_get_form',
  4189. 4189   'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:7:"garland";}',
  4190. 4190   'fit' => '31',
  4191. 4191   'number_parts' => '5',
  4192. 4192   'tab_parent' => 'admin/build/themes/settings',
  4193. 4193   'tab_root' => 'admin/build/themes',
  4194. 4194   'title' => 'Garland',
  4195. 4195   'title_callback' => 't',
  4196. 4196   'title_arguments' => '',
  4197. 4197   'type' => '128',
  4198. 4198   'block_callback' => '',
  4199. 4199   'description' => '',
  4200. 4200   'position' => '',
  4201. 4201   'weight' => '0',
  4202. 4202   'file' => 'modules/system/system.admin.inc',
  4203. 4203 ))
  4204. 4204 ->values(array(
  4205. 4205   'path' => 'admin/build/themes/settings/global',
  4206. 4206   'load_functions' => '',
  4207. 4207   'to_arg_functions' => '',
  4208. 4208   'access_callback' => 'user_access',
  4209. 4209   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
  4210. 4210   'page_callback' => 'drupal_get_form',
  4211. 4211   'page_arguments' => 'a:1:{i:0;s:21:"system_theme_settings";}',
  4212. 4212   'fit' => '31',
  4213. 4213   'number_parts' => '5',
  4214. 4214   'tab_parent' => 'admin/build/themes/settings',
  4215. 4215   'tab_root' => 'admin/build/themes',
  4216. 4216   'title' => 'Global settings',
  4217. 4217   'title_callback' => 't',
  4218. 4218   'title_arguments' => '',
  4219. 4219   'type' => '136',
  4220. 4220   'block_callback' => '',
  4221. 4221   'description' => '',
  4222. 4222   'position' => '',
  4223. 4223   'weight' => '-1',
  4224. 4224   'file' => 'modules/system/system.admin.inc',
  4225. 4225 ))
  4226. 4226 ->values(array(
  4227. 4227   'path' => 'admin/build/themes/settings/marvin',
  4228. 4228   'load_functions' => '',
  4229. 4229   'to_arg_functions' => '',
  4230. 4230   'access_callback' => '_system_themes_access',
  4231. 4231   'access_arguments' => 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:35:"themes/chameleon/marvin/marvin.info";s:4:"name";s:6:"marvin";s:4:"type";s:5:"theme";s:5:"owner";s:0:"";s:6:"status";s:1:"0";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:13:{s:4:"name";s:6:"Marvin";s:11:"description";s:31:"Boxy tabled theme in all grays.";s:7:"regions";a:2:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";}s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:10:"base theme";s:9:"chameleon";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:33:"themes/chameleon/marvin/style.css";}}s:7:"scripts";a:1:{s:9:"script.js";s:33:"themes/chameleon/marvin/script.js";}s:10:"screenshot";s:38:"themes/chameleon/marvin/screenshot.png";s:3:"php";s:5:"4.3.5";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:33:"themes/chameleon/marvin/style.css";}}s:10:"base_theme";s:9:"chameleon";}}',
  4232. 4232   'page_callback' => 'drupal_get_form',
  4233. 4233   'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:6:"marvin";}',
  4234. 4234   'fit' => '31',
  4235. 4235   'number_parts' => '5',
  4236. 4236   'tab_parent' => 'admin/build/themes/settings',
  4237. 4237   'tab_root' => 'admin/build/themes',
  4238. 4238   'title' => 'Marvin',
  4239. 4239   'title_callback' => 't',
  4240. 4240   'title_arguments' => '',
  4241. 4241   'type' => '128',
  4242. 4242   'block_callback' => '',
  4243. 4243   'description' => '',
  4244. 4244   'position' => '',
  4245. 4245   'weight' => '0',
  4246. 4246   'file' => 'modules/system/system.admin.inc',
  4247. 4247 ))
  4248. 4248 ->values(array(
  4249. 4249   'path' => 'admin/build/themes/settings/minnelli',
  4250. 4250   'load_functions' => '',
  4251. 4251   'to_arg_functions' => '',
  4252. 4252   'access_callback' => '_system_themes_access',
  4253. 4253   'access_arguments' => 'a:1:{i:0;O:8:"stdClass":13:{s:8:"filename";s:37:"themes/garland/minnelli/minnelli.info";s:4:"name";s:8:"minnelli";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"0";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:14:{s:4:"name";s:8:"Minnelli";s:11:"description";s:56:"Tableless, recolorable, multi-column, fixed width theme.";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:10:"base theme";s:7:"garland";s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:12:"minnelli.css";s:36:"themes/garland/minnelli/minnelli.css";}}s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:7:"scripts";a:1:{s:9:"script.js";s:33:"themes/garland/minnelli/script.js";}s:10:"screenshot";s:38:"themes/garland/minnelli/screenshot.png";s:3:"php";s:5:"4.3.5";s:6:"engine";s:11:"phptemplate";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:12:"minnelli.css";s:36:"themes/garland/minnelli/minnelli.css";}}s:6:"engine";s:11:"phptemplate";s:10:"base_theme";s:7:"garland";}}',
  4254. 4254   'page_callback' => 'drupal_get_form',
  4255. 4255   'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:8:"minnelli";}',
  4256. 4256   'fit' => '31',
  4257. 4257   'number_parts' => '5',
  4258. 4258   'tab_parent' => 'admin/build/themes/settings',
  4259. 4259   'tab_root' => 'admin/build/themes',
  4260. 4260   'title' => 'Minnelli',
  4261. 4261   'title_callback' => 't',
  4262. 4262   'title_arguments' => '',
  4263. 4263   'type' => '128',
  4264. 4264   'block_callback' => '',
  4265. 4265   'description' => '',
  4266. 4266   'position' => '',
  4267. 4267   'weight' => '0',
  4268. 4268   'file' => 'modules/system/system.admin.inc',
  4269. 4269 ))
  4270. 4270 ->values(array(
  4271. 4271   'path' => 'admin/build/themes/settings/pushbutton',
  4272. 4272   'load_functions' => '',
  4273. 4273   'to_arg_functions' => '',
  4274. 4274   'access_callback' => '_system_themes_access',
  4275. 4275   'access_arguments' => 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:33:"themes/pushbutton/pushbutton.info";s:4:"name";s:10:"pushbutton";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"0";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:13:{s:4:"name";s:10:"Pushbutton";s:11:"description";s:52:"Tabled, multi-column theme in blue and orange tones.";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:27:"themes/pushbutton/style.css";}}s:7:"scripts";a:1:{s:9:"script.js";s:27:"themes/pushbutton/script.js";}s:10:"screenshot";s:32:"themes/pushbutton/screenshot.png";s:3:"php";s:5:"4.3.5";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:27:"themes/pushbutton/style.css";}}s:6:"engine";s:11:"phptemplate";}}',
  4276. 4276   'page_callback' => 'drupal_get_form',
  4277. 4277   'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:10:"pushbutton";}',
  4278. 4278   'fit' => '31',
  4279. 4279   'number_parts' => '5',
  4280. 4280   'tab_parent' => 'admin/build/themes/settings',
  4281. 4281   'tab_root' => 'admin/build/themes',
  4282. 4282   'title' => 'Pushbutton',
  4283. 4283   'title_callback' => 't',
  4284. 4284   'title_arguments' => '',
  4285. 4285   'type' => '128',
  4286. 4286   'block_callback' => '',
  4287. 4287   'description' => '',
  4288. 4288   'position' => '',
  4289. 4289   'weight' => '0',
  4290. 4290   'file' => 'modules/system/system.admin.inc',
  4291. 4291 ))
  4292. 4292 ->values(array(
  4293. 4293   'path' => 'admin/by-module',
  4294. 4294   'load_functions' => '',
  4295. 4295   'to_arg_functions' => '',
  4296. 4296   'access_callback' => 'user_access',
  4297. 4297   'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
  4298. 4298   'page_callback' => 'system_admin_by_module',
  4299. 4299   'page_arguments' => 'a:0:{}',
  4300. 4300   'fit' => '3',
  4301. 4301   'number_parts' => '2',
  4302. 4302   'tab_parent' => 'admin',
  4303. 4303   'tab_root' => 'admin',
  4304. 4304   'title' => 'By module',
  4305. 4305   'title_callback' => 't',
  4306. 4306   'title_arguments' => '',
  4307. 4307   'type' => '128',
  4308. 4308   'block_callback' => '',
  4309. 4309   'description' => '',
  4310. 4310   'position' => '',
  4311. 4311   'weight' => '2',
  4312. 4312   'file' => 'modules/system/system.admin.inc',
  4313. 4313 ))
  4314. 4314 ->values(array(
  4315. 4315   'path' => 'admin/by-task',
  4316. 4316   'load_functions' => '',
  4317. 4317   'to_arg_functions' => '',
  4318. 4318   'access_callback' => 'user_access',
  4319. 4319   'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
  4320. 4320   'page_callback' => 'system_main_admin_page',
  4321. 4321   'page_arguments' => 'a:0:{}',
  4322. 4322   'fit' => '3',
  4323. 4323   'number_parts' => '2',
  4324. 4324   'tab_parent' => 'admin',
  4325. 4325   'tab_root' => 'admin',
  4326. 4326   'title' => 'By task',
  4327. 4327   'title_callback' => 't',
  4328. 4328   'title_arguments' => '',
  4329. 4329   'type' => '136',
  4330. 4330   'block_callback' => '',
  4331. 4331   'description' => '',
  4332. 4332   'position' => '',
  4333. 4333   'weight' => '0',
  4334. 4334   'file' => 'modules/system/system.admin.inc',
  4335. 4335 ))
  4336. 4336 ->values(array(
  4337. 4337   'path' => 'admin/compact',
  4338. 4338   'load_functions' => '',
  4339. 4339   'to_arg_functions' => '',
  4340. 4340   'access_callback' => 'user_access',
  4341. 4341   'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
  4342. 4342   'page_callback' => 'system_admin_compact_page',
  4343. 4343   'page_arguments' => 'a:0:{}',
  4344. 4344   'fit' => '3',
  4345. 4345   'number_parts' => '2',
  4346. 4346   'tab_parent' => '',
  4347. 4347   'tab_root' => 'admin/compact',
  4348. 4348   'title' => 'Compact mode',
  4349. 4349   'title_callback' => 't',
  4350. 4350   'title_arguments' => '',
  4351. 4351   'type' => '4',
  4352. 4352   'block_callback' => '',
  4353. 4353   'description' => '',
  4354. 4354   'position' => '',
  4355. 4355   'weight' => '0',
  4356. 4356   'file' => 'modules/system/system.admin.inc',
  4357. 4357 ))
  4358. 4358 ->values(array(
  4359. 4359   'path' => 'admin/content',
  4360. 4360   'load_functions' => '',
  4361. 4361   'to_arg_functions' => '',
  4362. 4362   'access_callback' => 'user_access',
  4363. 4363   'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
  4364. 4364   'page_callback' => 'system_admin_menu_block_page',
  4365. 4365   'page_arguments' => 'a:0:{}',
  4366. 4366   'fit' => '3',
  4367. 4367   'number_parts' => '2',
  4368. 4368   'tab_parent' => '',
  4369. 4369   'tab_root' => 'admin/content',
  4370. 4370   'title' => 'Content management',
  4371. 4371   'title_callback' => 't',
  4372. 4372   'title_arguments' => '',
  4373. 4373   'type' => '6',
  4374. 4374   'block_callback' => '',
  4375. 4375   'description' => "Manage your site's content.",
  4376. 4376   'position' => 'left',
  4377. 4377   'weight' => '-10',
  4378. 4378   'file' => 'modules/system/system.admin.inc',
  4379. 4379 ))
  4380. 4380 ->values(array(
  4381. 4381   'path' => 'admin/content/node',
  4382. 4382   'load_functions' => '',
  4383. 4383   'to_arg_functions' => '',
  4384. 4384   'access_callback' => 'user_access',
  4385. 4385   'access_arguments' => 'a:1:{i:0;s:16:"administer nodes";}',
  4386. 4386   'page_callback' => 'drupal_get_form',
  4387. 4387   'page_arguments' => 'a:1:{i:0;s:18:"node_admin_content";}',
  4388. 4388   'fit' => '7',
  4389. 4389   'number_parts' => '3',
  4390. 4390   'tab_parent' => '',
  4391. 4391   'tab_root' => 'admin/content/node',
  4392. 4392   'title' => 'Content',
  4393. 4393   'title_callback' => 't',
  4394. 4394   'title_arguments' => '',
  4395. 4395   'type' => '6',
  4396. 4396   'block_callback' => '',
  4397. 4397   'description' => "View, edit, and delete your site's content.",
  4398. 4398   'position' => '',
  4399. 4399   'weight' => '0',
  4400. 4400   'file' => 'modules/node/node.admin.inc',
  4401. 4401 ))
  4402. 4402 ->values(array(
  4403. 4403   'path' => 'admin/content/node-settings',
  4404. 4404   'load_functions' => '',
  4405. 4405   'to_arg_functions' => '',
  4406. 4406   'access_callback' => 'user_access',
  4407. 4407   'access_arguments' => 'a:1:{i:0;s:16:"administer nodes";}',
  4408. 4408   'page_callback' => 'drupal_get_form',
  4409. 4409   'page_arguments' => 'a:1:{i:0;s:14:"node_configure";}',
  4410. 4410   'fit' => '7',
  4411. 4411   'number_parts' => '3',
  4412. 4412   'tab_parent' => '',
  4413. 4413   'tab_root' => 'admin/content/node-settings',
  4414. 4414   'title' => 'Post settings',
  4415. 4415   'title_callback' => 't',
  4416. 4416   'title_arguments' => '',
  4417. 4417   'type' => '6',
  4418. 4418   'block_callback' => '',
  4419. 4419   'description' => 'Control posting behavior, such as teaser length, requiring previews before posting, and the number of posts on the front page.',
  4420. 4420   'position' => '',
  4421. 4421   'weight' => '0',
  4422. 4422   'file' => 'modules/node/node.admin.inc',
  4423. 4423 ))
  4424. 4424 ->values(array(
  4425. 4425   'path' => 'admin/content/node-settings/rebuild',
  4426. 4426   'load_functions' => '',
  4427. 4427   'to_arg_functions' => '',
  4428. 4428   'access_callback' => 'user_access',
  4429. 4429   'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
  4430. 4430   'page_callback' => 'drupal_get_form',
  4431. 4431   'page_arguments' => 'a:1:{i:0;s:30:"node_configure_rebuild_confirm";}',
  4432. 4432   'fit' => '15',
  4433. 4433   'number_parts' => '4',
  4434. 4434   'tab_parent' => '',
  4435. 4435   'tab_root' => 'admin/content/node-settings/rebuild',
  4436. 4436   'title' => 'Rebuild permissions',
  4437. 4437   'title_callback' => 't',
  4438. 4438   'title_arguments' => '',
  4439. 4439   'type' => '4',
  4440. 4440   'block_callback' => '',
  4441. 4441   'description' => '',
  4442. 4442   'position' => '',
  4443. 4443   'weight' => '0',
  4444. 4444   'file' => 'modules/node/node.admin.inc',
  4445. 4445 ))
  4446. 4446 ->values(array(
  4447. 4447   'path' => 'admin/content/node-type/page',
  4448. 4448   'load_functions' => '',
  4449. 4449   'to_arg_functions' => '',
  4450. 4450   'access_callback' => 'user_access',
  4451. 4451   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
  4452. 4452   'page_callback' => 'drupal_get_form',
  4453. 4453   'page_arguments' => "a:2:{i:0;s:14:\"node_type_form\";i:1;O:8:\"stdClass\":14:{s:4:\"type\";s:4:\"page\";s:4:\"name\";s:4:\"Page\";s:6:\"module\";s:4:\"node\";s:11:\"description\";s:296:\"A <em>page</em>, similar in form to a <em>story</em>, is a simple method for creating and displaying information that rarely changes, such as an \"About us\" section of a website. By default, a <em>page</em> entry does not allow visitor comments and is not featured on the site's initial home page.\";s:4:\"help\";s:0:\"\";s:9:\"has_title\";s:1:\"1\";s:11:\"title_label\";s:5:\"Title\";s:8:\"has_body\";s:1:\"1\";s:10:\"body_label\";s:4:\"Body\";s:14:\"min_word_count\";s:1:\"0\";s:6:\"custom\";s:1:\"1\";s:8:\"modified\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:9:\"orig_type\";s:4:\"page\";}}",
  4454. 4454   'fit' => '15',
  4455. 4455   'number_parts' => '4',
  4456. 4456   'tab_parent' => '',
  4457. 4457   'tab_root' => 'admin/content/node-type/page',
  4458. 4458   'title' => 'Page',
  4459. 4459   'title_callback' => 't',
  4460. 4460   'title_arguments' => '',
  4461. 4461   'type' => '4',
  4462. 4462   'block_callback' => '',
  4463. 4463   'description' => '',
  4464. 4464   'position' => '',
  4465. 4465   'weight' => '0',
  4466. 4466   'file' => 'modules/node/content_types.inc',
  4467. 4467 ))
  4468. 4468 ->values(array(
  4469. 4469   'path' => 'admin/content/node-type/page/delete',
  4470. 4470   'load_functions' => '',
  4471. 4471   'to_arg_functions' => '',
  4472. 4472   'access_callback' => 'user_access',
  4473. 4473   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
  4474. 4474   'page_callback' => 'drupal_get_form',
  4475. 4475   'page_arguments' => "a:2:{i:0;s:24:\"node_type_delete_confirm\";i:1;O:8:\"stdClass\":14:{s:4:\"type\";s:4:\"page\";s:4:\"name\";s:4:\"Page\";s:6:\"module\";s:4:\"node\";s:11:\"description\";s:296:\"A <em>page</em>, similar in form to a <em>story</em>, is a simple method for creating and displaying information that rarely changes, such as an \"About us\" section of a website. By default, a <em>page</em> entry does not allow visitor comments and is not featured on the site's initial home page.\";s:4:\"help\";s:0:\"\";s:9:\"has_title\";s:1:\"1\";s:11:\"title_label\";s:5:\"Title\";s:8:\"has_body\";s:1:\"1\";s:10:\"body_label\";s:4:\"Body\";s:14:\"min_word_count\";s:1:\"0\";s:6:\"custom\";s:1:\"1\";s:8:\"modified\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:9:\"orig_type\";s:4:\"page\";}}",
  4476. 4476   'fit' => '31',
  4477. 4477   'number_parts' => '5',
  4478. 4478   'tab_parent' => '',
  4479. 4479   'tab_root' => 'admin/content/node-type/page/delete',
  4480. 4480   'title' => 'Delete',
  4481. 4481   'title_callback' => 't',
  4482. 4482   'title_arguments' => '',
  4483. 4483   'type' => '4',
  4484. 4484   'block_callback' => '',
  4485. 4485   'description' => '',
  4486. 4486   'position' => '',
  4487. 4487   'weight' => '0',
  4488. 4488   'file' => 'modules/node/content_types.inc',
  4489. 4489 ))
  4490. 4490 ->values(array(
  4491. 4491   'path' => 'admin/content/node-type/page/edit',
  4492. 4492   'load_functions' => '',
  4493. 4493   'to_arg_functions' => '',
  4494. 4494   'access_callback' => 'user_access',
  4495. 4495   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
  4496. 4496   'page_callback' => 'drupal_get_form',
  4497. 4497   'page_arguments' => "a:2:{i:0;s:14:\"node_type_form\";i:1;O:8:\"stdClass\":14:{s:4:\"type\";s:4:\"page\";s:4:\"name\";s:4:\"Page\";s:6:\"module\";s:4:\"node\";s:11:\"description\";s:296:\"A <em>page</em>, similar in form to a <em>story</em>, is a simple method for creating and displaying information that rarely changes, such as an \"About us\" section of a website. By default, a <em>page</em> entry does not allow visitor comments and is not featured on the site's initial home page.\";s:4:\"help\";s:0:\"\";s:9:\"has_title\";s:1:\"1\";s:11:\"title_label\";s:5:\"Title\";s:8:\"has_body\";s:1:\"1\";s:10:\"body_label\";s:4:\"Body\";s:14:\"min_word_count\";s:1:\"0\";s:6:\"custom\";s:1:\"1\";s:8:\"modified\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:9:\"orig_type\";s:4:\"page\";}}",
  4498. 4498   'fit' => '31',
  4499. 4499   'number_parts' => '5',
  4500. 4500   'tab_parent' => 'admin/content/node-type/page',
  4501. 4501   'tab_root' => 'admin/content/node-type/page',
  4502. 4502   'title' => 'Edit',
  4503. 4503   'title_callback' => 't',
  4504. 4504   'title_arguments' => '',
  4505. 4505   'type' => '136',
  4506. 4506   'block_callback' => '',
  4507. 4507   'description' => '',
  4508. 4508   'position' => '',
  4509. 4509   'weight' => '0',
  4510. 4510   'file' => 'modules/node/content_types.inc',
  4511. 4511 ))
  4512. 4512 ->values(array(
  4513. 4513   'path' => 'admin/content/node-type/story',
  4514. 4514   'load_functions' => '',
  4515. 4515   'to_arg_functions' => '',
  4516. 4516   'access_callback' => 'user_access',
  4517. 4517   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
  4518. 4518   'page_callback' => 'drupal_get_form',
  4519. 4519   'page_arguments' => "a:2:{i:0;s:14:\"node_type_form\";i:1;O:8:\"stdClass\":14:{s:4:\"type\";s:5:\"story\";s:4:\"name\";s:5:\"Story\";s:6:\"module\";s:4:\"node\";s:11:\"description\";s:392:\"A <em>story</em>, similar in form to a <em>page</em>, is ideal for creating and displaying content that informs or engages website visitors. Press releases, site announcements, and informal blog-like entries may all be created with a <em>story</em> entry. By default, a <em>story</em> entry is automatically featured on the site's initial home page, and provides the ability to post comments.\";s:4:\"help\";s:0:\"\";s:9:\"has_title\";s:1:\"1\";s:11:\"title_label\";s:5:\"Title\";s:8:\"has_body\";s:1:\"1\";s:10:\"body_label\";s:4:\"Body\";s:14:\"min_word_count\";s:1:\"0\";s:6:\"custom\";s:1:\"1\";s:8:\"modified\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:9:\"orig_type\";s:5:\"story\";}}",
  4520. 4520   'fit' => '15',
  4521. 4521   'number_parts' => '4',
  4522. 4522   'tab_parent' => '',
  4523. 4523   'tab_root' => 'admin/content/node-type/story',
  4524. 4524   'title' => 'Story',
  4525. 4525   'title_callback' => 't',
  4526. 4526   'title_arguments' => '',
  4527. 4527   'type' => '4',
  4528. 4528   'block_callback' => '',
  4529. 4529   'description' => '',
  4530. 4530   'position' => '',
  4531. 4531   'weight' => '0',
  4532. 4532   'file' => 'modules/node/content_types.inc',
  4533. 4533 ))
  4534. 4534 ->values(array(
  4535. 4535   'path' => 'admin/content/node-type/story/delete',
  4536. 4536   'load_functions' => '',
  4537. 4537   'to_arg_functions' => '',
  4538. 4538   'access_callback' => 'user_access',
  4539. 4539   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
  4540. 4540   'page_callback' => 'drupal_get_form',
  4541. 4541   'page_arguments' => "a:2:{i:0;s:24:\"node_type_delete_confirm\";i:1;O:8:\"stdClass\":14:{s:4:\"type\";s:5:\"story\";s:4:\"name\";s:5:\"Story\";s:6:\"module\";s:4:\"node\";s:11:\"description\";s:392:\"A <em>story</em>, similar in form to a <em>page</em>, is ideal for creating and displaying content that informs or engages website visitors. Press releases, site announcements, and informal blog-like entries may all be created with a <em>story</em> entry. By default, a <em>story</em> entry is automatically featured on the site's initial home page, and provides the ability to post comments.\";s:4:\"help\";s:0:\"\";s:9:\"has_title\";s:1:\"1\";s:11:\"title_label\";s:5:\"Title\";s:8:\"has_body\";s:1:\"1\";s:10:\"body_label\";s:4:\"Body\";s:14:\"min_word_count\";s:1:\"0\";s:6:\"custom\";s:1:\"1\";s:8:\"modified\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:9:\"orig_type\";s:5:\"story\";}}",
  4542. 4542   'fit' => '31',
  4543. 4543   'number_parts' => '5',
  4544. 4544   'tab_parent' => '',
  4545. 4545   'tab_root' => 'admin/content/node-type/story/delete',
  4546. 4546   'title' => 'Delete',
  4547. 4547   'title_callback' => 't',
  4548. 4548   'title_arguments' => '',
  4549. 4549   'type' => '4',
  4550. 4550   'block_callback' => '',
  4551. 4551   'description' => '',
  4552. 4552   'position' => '',
  4553. 4553   'weight' => '0',
  4554. 4554   'file' => 'modules/node/content_types.inc',
  4555. 4555 ))
  4556. 4556 ->values(array(
  4557. 4557   'path' => 'admin/content/node-type/story/edit',
  4558. 4558   'load_functions' => '',
  4559. 4559   'to_arg_functions' => '',
  4560. 4560   'access_callback' => 'user_access',
  4561. 4561   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
  4562. 4562   'page_callback' => 'drupal_get_form',
  4563. 4563   'page_arguments' => "a:2:{i:0;s:14:\"node_type_form\";i:1;O:8:\"stdClass\":14:{s:4:\"type\";s:5:\"story\";s:4:\"name\";s:5:\"Story\";s:6:\"module\";s:4:\"node\";s:11:\"description\";s:392:\"A <em>story</em>, similar in form to a <em>page</em>, is ideal for creating and displaying content that informs or engages website visitors. Press releases, site announcements, and informal blog-like entries may all be created with a <em>story</em> entry. By default, a <em>story</em> entry is automatically featured on the site's initial home page, and provides the ability to post comments.\";s:4:\"help\";s:0:\"\";s:9:\"has_title\";s:1:\"1\";s:11:\"title_label\";s:5:\"Title\";s:8:\"has_body\";s:1:\"1\";s:10:\"body_label\";s:4:\"Body\";s:14:\"min_word_count\";s:1:\"0\";s:6:\"custom\";s:1:\"1\";s:8:\"modified\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:9:\"orig_type\";s:5:\"story\";}}",
  4564. 4564   'fit' => '31',
  4565. 4565   'number_parts' => '5',
  4566. 4566   'tab_parent' => 'admin/content/node-type/story',
  4567. 4567   'tab_root' => 'admin/content/node-type/story',
  4568. 4568   'title' => 'Edit',
  4569. 4569   'title_callback' => 't',
  4570. 4570   'title_arguments' => '',
  4571. 4571   'type' => '136',
  4572. 4572   'block_callback' => '',
  4573. 4573   'description' => '',
  4574. 4574   'position' => '',
  4575. 4575   'weight' => '0',
  4576. 4576   'file' => 'modules/node/content_types.inc',
  4577. 4577 ))
  4578. 4578 ->values(array(
  4579. 4579   'path' => 'admin/content/node/overview',
  4580. 4580   'load_functions' => '',
  4581. 4581   'to_arg_functions' => '',
  4582. 4582   'access_callback' => 'user_access',
  4583. 4583   'access_arguments' => 'a:1:{i:0;s:16:"administer nodes";}',
  4584. 4584   'page_callback' => 'drupal_get_form',
  4585. 4585   'page_arguments' => 'a:1:{i:0;s:18:"node_admin_content";}',
  4586. 4586   'fit' => '15',
  4587. 4587   'number_parts' => '4',
  4588. 4588   'tab_parent' => 'admin/content/node',
  4589. 4589   'tab_root' => 'admin/content/node',
  4590. 4590   'title' => 'List',
  4591. 4591   'title_callback' => 't',
  4592. 4592   'title_arguments' => '',
  4593. 4593   'type' => '136',
  4594. 4594   'block_callback' => '',
  4595. 4595   'description' => '',
  4596. 4596   'position' => '',
  4597. 4597   'weight' => '-10',
  4598. 4598   'file' => 'modules/node/node.admin.inc',
  4599. 4599 ))
  4600. 4600 ->values(array(
  4601. 4601   'path' => 'admin/content/rss-publishing',
  4602. 4602   'load_functions' => '',
  4603. 4603   'to_arg_functions' => '',
  4604. 4604   'access_callback' => 'user_access',
  4605. 4605   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
  4606. 4606   'page_callback' => 'drupal_get_form',
  4607. 4607   'page_arguments' => 'a:1:{i:0;s:25:"system_rss_feeds_settings";}',
  4608. 4608   'fit' => '7',
  4609. 4609   'number_parts' => '3',
  4610. 4610   'tab_parent' => '',
  4611. 4611   'tab_root' => 'admin/content/rss-publishing',
  4612. 4612   'title' => 'RSS publishing',
  4613. 4613   'title_callback' => 't',
  4614. 4614   'title_arguments' => '',
  4615. 4615   'type' => '6',
  4616. 4616   'block_callback' => '',
  4617. 4617   'description' => 'Configure the number of items per feed and whether feeds should be titles/teasers/full-text.',
  4618. 4618   'position' => '',
  4619. 4619   'weight' => '0',
  4620. 4620   'file' => 'modules/system/system.admin.inc',
  4621. 4621 ))
  4622. 4622 ->values(array(
  4623. 4623   'path' => 'admin/content/types',
  4624. 4624   'load_functions' => '',
  4625. 4625   'to_arg_functions' => '',
  4626. 4626   'access_callback' => 'user_access',
  4627. 4627   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
  4628. 4628   'page_callback' => 'node_overview_types',
  4629. 4629   'page_arguments' => 'a:0:{}',
  4630. 4630   'fit' => '7',
  4631. 4631   'number_parts' => '3',
  4632. 4632   'tab_parent' => '',
  4633. 4633   'tab_root' => 'admin/content/types',
  4634. 4634   'title' => 'Content types',
  4635. 4635   'title_callback' => 't',
  4636. 4636   'title_arguments' => '',
  4637. 4637   'type' => '6',
  4638. 4638   'block_callback' => '',
  4639. 4639   'description' => 'Manage posts by content type, including default status, front page promotion, etc.',
  4640. 4640   'position' => '',
  4641. 4641   'weight' => '0',
  4642. 4642   'file' => 'modules/node/content_types.inc',
  4643. 4643 ))
  4644. 4644 ->values(array(
  4645. 4645   'path' => 'admin/content/types/add',
  4646. 4646   'load_functions' => '',
  4647. 4647   'to_arg_functions' => '',
  4648. 4648   'access_callback' => 'user_access',
  4649. 4649   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
  4650. 4650   'page_callback' => 'drupal_get_form',
  4651. 4651   'page_arguments' => 'a:1:{i:0;s:14:"node_type_form";}',
  4652. 4652   'fit' => '15',
  4653. 4653   'number_parts' => '4',
  4654. 4654   'tab_parent' => 'admin/content/types',
  4655. 4655   'tab_root' => 'admin/content/types',
  4656. 4656   'title' => 'Add content type',
  4657. 4657   'title_callback' => 't',
  4658. 4658   'title_arguments' => '',
  4659. 4659   'type' => '128',
  4660. 4660   'block_callback' => '',
  4661. 4661   'description' => '',
  4662. 4662   'position' => '',
  4663. 4663   'weight' => '0',
  4664. 4664   'file' => 'modules/node/content_types.inc',
  4665. 4665 ))
  4666. 4666 ->values(array(
  4667. 4667   'path' => 'admin/content/types/list',
  4668. 4668   'load_functions' => '',
  4669. 4669   'to_arg_functions' => '',
  4670. 4670   'access_callback' => 'user_access',
  4671. 4671   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
  4672. 4672   'page_callback' => 'node_overview_types',
  4673. 4673   'page_arguments' => 'a:0:{}',
  4674. 4674   'fit' => '15',
  4675. 4675   'number_parts' => '4',
  4676. 4676   'tab_parent' => 'admin/content/types',
  4677. 4677   'tab_root' => 'admin/content/types',
  4678. 4678   'title' => 'List',
  4679. 4679   'title_callback' => 't',
  4680. 4680   'title_arguments' => '',
  4681. 4681   'type' => '136',
  4682. 4682   'block_callback' => '',
  4683. 4683   'description' => '',
  4684. 4684   'position' => '',
  4685. 4685   'weight' => '-10',
  4686. 4686   'file' => 'modules/node/content_types.inc',
  4687. 4687 ))
  4688. 4688 ->values(array(
  4689. 4689   'path' => 'admin/reports',
  4690. 4690   'load_functions' => '',
  4691. 4691   'to_arg_functions' => '',
  4692. 4692   'access_callback' => 'user_access',
  4693. 4693   'access_arguments' => 'a:1:{i:0;s:19:"access site reports";}',
  4694. 4694   'page_callback' => 'system_admin_menu_block_page',
  4695. 4695   'page_arguments' => 'a:0:{}',
  4696. 4696   'fit' => '3',
  4697. 4697   'number_parts' => '2',
  4698. 4698   'tab_parent' => '',
  4699. 4699   'tab_root' => 'admin/reports',
  4700. 4700   'title' => 'Reports',
  4701. 4701   'title_callback' => 't',
  4702. 4702   'title_arguments' => '',
  4703. 4703   'type' => '6',
  4704. 4704   'block_callback' => '',
  4705. 4705   'description' => 'View reports from system logs and other status information.',
  4706. 4706   'position' => 'left',
  4707. 4707   'weight' => '5',
  4708. 4708   'file' => 'modules/system/system.admin.inc',
  4709. 4709 ))
  4710. 4710 ->values(array(
  4711. 4711   'path' => 'admin/reports/access-denied',
  4712. 4712   'load_functions' => '',
  4713. 4713   'to_arg_functions' => '',
  4714. 4714   'access_callback' => 'user_access',
  4715. 4715   'access_arguments' => 'a:1:{i:0;s:19:"access site reports";}',
  4716. 4716   'page_callback' => 'dblog_top',
  4717. 4717   'page_arguments' => 'a:1:{i:0;s:13:"access denied";}',
  4718. 4718   'fit' => '7',
  4719. 4719   'number_parts' => '3',
  4720. 4720   'tab_parent' => '',
  4721. 4721   'tab_root' => 'admin/reports/access-denied',
  4722. 4722   'title' => "Top 'access denied' errors",
  4723. 4723   'title_callback' => 't',
  4724. 4724   'title_arguments' => '',
  4725. 4725   'type' => '6',
  4726. 4726   'block_callback' => '',
  4727. 4727   'description' => "View 'access denied' errors (403s).",
  4728. 4728   'position' => '',
  4729. 4729   'weight' => '0',
  4730. 4730   'file' => 'modules/dblog/dblog.admin.inc',
  4731. 4731 ))
  4732. 4732 ->values(array(
  4733. 4733   'path' => 'admin/reports/dblog',
  4734. 4734   'load_functions' => '',
  4735. 4735   'to_arg_functions' => '',
  4736. 4736   'access_callback' => 'user_access',
  4737. 4737   'access_arguments' => 'a:1:{i:0;s:19:"access site reports";}',
  4738. 4738   'page_callback' => 'dblog_overview',
  4739. 4739   'page_arguments' => 'a:0:{}',
  4740. 4740   'fit' => '7',
  4741. 4741   'number_parts' => '3',
  4742. 4742   'tab_parent' => '',
  4743. 4743   'tab_root' => 'admin/reports/dblog',
  4744. 4744   'title' => 'Recent log entries',
  4745. 4745   'title_callback' => 't',
  4746. 4746   'title_arguments' => '',
  4747. 4747   'type' => '6',
  4748. 4748   'block_callback' => '',
  4749. 4749   'description' => 'View events that have recently been logged.',
  4750. 4750   'position' => '',
  4751. 4751   'weight' => '-1',
  4752. 4752   'file' => 'modules/dblog/dblog.admin.inc',
  4753. 4753 ))
  4754. 4754 ->values(array(
  4755. 4755   'path' => 'admin/reports/event/%',
  4756. 4756   'load_functions' => 'a:1:{i:3;N;}',
  4757. 4757   'to_arg_functions' => '',
  4758. 4758   'access_callback' => 'user_access',
  4759. 4759   'access_arguments' => 'a:1:{i:0;s:19:"access site reports";}',
  4760. 4760   'page_callback' => 'dblog_event',
  4761. 4761   'page_arguments' => 'a:1:{i:0;i:3;}',
  4762. 4762   'fit' => '14',
  4763. 4763   'number_parts' => '4',
  4764. 4764   'tab_parent' => '',
  4765. 4765   'tab_root' => 'admin/reports/event/%',
  4766. 4766   'title' => 'Details',
  4767. 4767   'title_callback' => 't',
  4768. 4768   'title_arguments' => '',
  4769. 4769   'type' => '4',
  4770. 4770   'block_callback' => '',
  4771. 4771   'description' => '',
  4772. 4772   'position' => '',
  4773. 4773   'weight' => '0',
  4774. 4774   'file' => 'modules/dblog/dblog.admin.inc',
  4775. 4775 ))
  4776. 4776 ->values(array(
  4777. 4777   'path' => 'admin/reports/page-not-found',
  4778. 4778   'load_functions' => '',
  4779. 4779   'to_arg_functions' => '',
  4780. 4780   'access_callback' => 'user_access',
  4781. 4781   'access_arguments' => 'a:1:{i:0;s:19:"access site reports";}',
  4782. 4782   'page_callback' => 'dblog_top',
  4783. 4783   'page_arguments' => 'a:1:{i:0;s:14:"page not found";}',
  4784. 4784   'fit' => '7',
  4785. 4785   'number_parts' => '3',
  4786. 4786   'tab_parent' => '',
  4787. 4787   'tab_root' => 'admin/reports/page-not-found',
  4788. 4788   'title' => "Top 'page not found' errors",
  4789. 4789   'title_callback' => 't',
  4790. 4790   'title_arguments' => '',
  4791. 4791   'type' => '6',
  4792. 4792   'block_callback' => '',
  4793. 4793   'description' => "View 'page not found' errors (404s).",
  4794. 4794   'position' => '',
  4795. 4795   'weight' => '0',
  4796. 4796   'file' => 'modules/dblog/dblog.admin.inc',
  4797. 4797 ))
  4798. 4798 ->values(array(
  4799. 4799   'path' => 'admin/reports/status',
  4800. 4800   'load_functions' => '',
  4801. 4801   'to_arg_functions' => '',
  4802. 4802   'access_callback' => 'user_access',
  4803. 4803   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
  4804. 4804   'page_callback' => 'system_status',
  4805. 4805   'page_arguments' => 'a:0:{}',
  4806. 4806   'fit' => '7',
  4807. 4807   'number_parts' => '3',
  4808. 4808   'tab_parent' => '',
  4809. 4809   'tab_root' => 'admin/reports/status',
  4810. 4810   'title' => 'Status report',
  4811. 4811   'title_callback' => 't',
  4812. 4812   'title_arguments' => '',
  4813. 4813   'type' => '6',
  4814. 4814   'block_callback' => '',
  4815. 4815   'description' => "Get a status report about your site's operation and any detected problems.",
  4816. 4816   'position' => '',
  4817. 4817   'weight' => '10',
  4818. 4818   'file' => 'modules/system/system.admin.inc',
  4819. 4819 ))
  4820. 4820 ->values(array(
  4821. 4821   'path' => 'admin/reports/status/php',
  4822. 4822   'load_functions' => '',
  4823. 4823   'to_arg_functions' => '',
  4824. 4824   'access_callback' => 'user_access',
  4825. 4825   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
  4826. 4826   'page_callback' => 'system_php',
  4827. 4827   'page_arguments' => 'a:0:{}',
  4828. 4828   'fit' => '15',
  4829. 4829   'number_parts' => '4',
  4830. 4830   'tab_parent' => '',
  4831. 4831   'tab_root' => 'admin/reports/status/php',
  4832. 4832   'title' => 'PHP',
  4833. 4833   'title_callback' => 't',
  4834. 4834   'title_arguments' => '',
  4835. 4835   'type' => '4',
  4836. 4836   'block_callback' => '',
  4837. 4837   'description' => '',
  4838. 4838   'position' => '',
  4839. 4839   'weight' => '0',
  4840. 4840   'file' => 'modules/system/system.admin.inc',
  4841. 4841 ))
  4842. 4842 ->values(array(
  4843. 4843   'path' => 'admin/reports/status/run-cron',
  4844. 4844   'load_functions' => '',
  4845. 4845   'to_arg_functions' => '',
  4846. 4846   'access_callback' => 'user_access',
  4847. 4847   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
  4848. 4848   'page_callback' => 'system_run_cron',
  4849. 4849   'page_arguments' => 'a:0:{}',
  4850. 4850   'fit' => '15',
  4851. 4851   'number_parts' => '4',
  4852. 4852   'tab_parent' => '',
  4853. 4853   'tab_root' => 'admin/reports/status/run-cron',
  4854. 4854   'title' => 'Run cron',
  4855. 4855   'title_callback' => 't',
  4856. 4856   'title_arguments' => '',
  4857. 4857   'type' => '4',
  4858. 4858   'block_callback' => '',
  4859. 4859   'description' => '',
  4860. 4860   'position' => '',
  4861. 4861   'weight' => '0',
  4862. 4862   'file' => 'modules/system/system.admin.inc',
  4863. 4863 ))
  4864. 4864 ->values(array(
  4865. 4865   'path' => 'admin/reports/status/sql',
  4866. 4866   'load_functions' => '',
  4867. 4867   'to_arg_functions' => '',
  4868. 4868   'access_callback' => 'user_access',
  4869. 4869   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
  4870. 4870   'page_callback' => 'system_sql',
  4871. 4871   'page_arguments' => 'a:0:{}',
  4872. 4872   'fit' => '15',
  4873. 4873   'number_parts' => '4',
  4874. 4874   'tab_parent' => '',
  4875. 4875   'tab_root' => 'admin/reports/status/sql',
  4876. 4876   'title' => 'SQL',
  4877. 4877   'title_callback' => 't',
  4878. 4878   'title_arguments' => '',
  4879. 4879   'type' => '4',
  4880. 4880   'block_callback' => '',
  4881. 4881   'description' => '',
  4882. 4882   'position' => '',
  4883. 4883   'weight' => '0',
  4884. 4884   'file' => 'modules/system/system.admin.inc',
  4885. 4885 ))
  4886. 4886 ->values(array(
  4887. 4887   'path' => 'admin/reports/updates',
  4888. 4888   'load_functions' => '',
  4889. 4889   'to_arg_functions' => '',
  4890. 4890   'access_callback' => 'user_access',
  4891. 4891   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
  4892. 4892   'page_callback' => 'update_status',
  4893. 4893   'page_arguments' => 'a:0:{}',
  4894. 4894   'fit' => '7',
  4895. 4895   'number_parts' => '3',
  4896. 4896   'tab_parent' => '',
  4897. 4897   'tab_root' => 'admin/reports/updates',
  4898. 4898   'title' => 'Available updates',
  4899. 4899   'title_callback' => 't',
  4900. 4900   'title_arguments' => '',
  4901. 4901   'type' => '6',
  4902. 4902   'block_callback' => '',
  4903. 4903   'description' => 'Get a status report about available updates for your installed modules and themes.',
  4904. 4904   'position' => '',
  4905. 4905   'weight' => '10',
  4906. 4906   'file' => 'modules/update/update.report.inc',
  4907. 4907 ))
  4908. 4908 ->values(array(
  4909. 4909   'path' => 'admin/reports/updates/check',
  4910. 4910   'load_functions' => '',
  4911. 4911   'to_arg_functions' => '',
  4912. 4912   'access_callback' => 'user_access',
  4913. 4913   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
  4914. 4914   'page_callback' => 'update_manual_status',
  4915. 4915   'page_arguments' => 'a:0:{}',
  4916. 4916   'fit' => '15',
  4917. 4917   'number_parts' => '4',
  4918. 4918   'tab_parent' => '',
  4919. 4919   'tab_root' => 'admin/reports/updates/check',
  4920. 4920   'title' => 'Manual update check',
  4921. 4921   'title_callback' => 't',
  4922. 4922   'title_arguments' => '',
  4923. 4923   'type' => '4',
  4924. 4924   'block_callback' => '',
  4925. 4925   'description' => '',
  4926. 4926   'position' => '',
  4927. 4927   'weight' => '0',
  4928. 4928   'file' => 'modules/update/update.fetch.inc',
  4929. 4929 ))
  4930. 4930 ->values(array(
  4931. 4931   'path' => 'admin/reports/updates/list',
  4932. 4932   'load_functions' => '',
  4933. 4933   'to_arg_functions' => '',
  4934. 4934   'access_callback' => 'user_access',
  4935. 4935   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
  4936. 4936   'page_callback' => 'update_status',
  4937. 4937   'page_arguments' => 'a:0:{}',
  4938. 4938   'fit' => '15',
  4939. 4939   'number_parts' => '4',
  4940. 4940   'tab_parent' => 'admin/reports/updates',
  4941. 4941   'tab_root' => 'admin/reports/updates',
  4942. 4942   'title' => 'List',
  4943. 4943   'title_callback' => 't',
  4944. 4944   'title_arguments' => '',
  4945. 4945   'type' => '136',
  4946. 4946   'block_callback' => '',
  4947. 4947   'description' => '',
  4948. 4948   'position' => '',
  4949. 4949   'weight' => '0',
  4950. 4950   'file' => 'modules/update/update.report.inc',
  4951. 4951 ))
  4952. 4952 ->values(array(
  4953. 4953   'path' => 'admin/reports/updates/settings',
  4954. 4954   'load_functions' => '',
  4955. 4955   'to_arg_functions' => '',
  4956. 4956   'access_callback' => 'user_access',
  4957. 4957   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
  4958. 4958   'page_callback' => 'drupal_get_form',
  4959. 4959   'page_arguments' => 'a:1:{i:0;s:15:"update_settings";}',
  4960. 4960   'fit' => '15',
  4961. 4961   'number_parts' => '4',
  4962. 4962   'tab_parent' => 'admin/reports/updates',
  4963. 4963   'tab_root' => 'admin/reports/updates',
  4964. 4964   'title' => 'Settings',
  4965. 4965   'title_callback' => 't',
  4966. 4966   'title_arguments' => '',
  4967. 4967   'type' => '128',
  4968. 4968   'block_callback' => '',
  4969. 4969   'description' => '',
  4970. 4970   'position' => '',
  4971. 4971   'weight' => '0',
  4972. 4972   'file' => 'modules/update/update.settings.inc',
  4973. 4973 ))
  4974. 4974 ->values(array(
  4975. 4975   'path' => 'admin/settings',
  4976. 4976   'load_functions' => '',
  4977. 4977   'to_arg_functions' => '',
  4978. 4978   'access_callback' => 'user_access',
  4979. 4979   'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
  4980. 4980   'page_callback' => 'system_settings_overview',
  4981. 4981   'page_arguments' => 'a:0:{}',
  4982. 4982   'fit' => '3',
  4983. 4983   'number_parts' => '2',
  4984. 4984   'tab_parent' => '',
  4985. 4985   'tab_root' => 'admin/settings',
  4986. 4986   'title' => 'Site configuration',
  4987. 4987   'title_callback' => 't',
  4988. 4988   'title_arguments' => '',
  4989. 4989   'type' => '6',
  4990. 4990   'block_callback' => '',
  4991. 4991   'description' => 'Adjust basic site configuration options.',
  4992. 4992   'position' => 'right',
  4993. 4993   'weight' => '-5',
  4994. 4994   'file' => 'modules/system/system.admin.inc',
  4995. 4995 ))
  4996. 4996 ->values(array(
  4997. 4997   'path' => 'admin/settings/actions',
  4998. 4998   'load_functions' => '',
  4999. 4999   'to_arg_functions' => '',
  5000. 5000   'access_callback' => 'user_access',
  5001. 5001   'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}',
  5002. 5002   'page_callback' => 'system_actions_manage',
  5003. 5003   'page_arguments' => 'a:0:{}',
  5004. 5004   'fit' => '7',
  5005. 5005   'number_parts' => '3',
  5006. 5006   'tab_parent' => '',
  5007. 5007   'tab_root' => 'admin/settings/actions',
  5008. 5008   'title' => 'Actions',
  5009. 5009   'title_callback' => 't',
  5010. 5010   'title_arguments' => '',
  5011. 5011   'type' => '6',
  5012. 5012   'block_callback' => '',
  5013. 5013   'description' => 'Manage the actions defined for your site.',
  5014. 5014   'position' => '',
  5015. 5015   'weight' => '0',
  5016. 5016   'file' => '',
  5017. 5017 ))
  5018. 5018 ->values(array(
  5019. 5019   'path' => 'admin/settings/actions/configure',
  5020. 5020   'load_functions' => '',
  5021. 5021   'to_arg_functions' => '',
  5022. 5022   'access_callback' => 'user_access',
  5023. 5023   'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}',
  5024. 5024   'page_callback' => 'drupal_get_form',
  5025. 5025   'page_arguments' => 'a:1:{i:0;s:24:"system_actions_configure";}',
  5026. 5026   'fit' => '15',
  5027. 5027   'number_parts' => '4',
  5028. 5028   'tab_parent' => '',
  5029. 5029   'tab_root' => 'admin/settings/actions/configure',
  5030. 5030   'title' => 'Configure an advanced action',
  5031. 5031   'title_callback' => 't',
  5032. 5032   'title_arguments' => '',
  5033. 5033   'type' => '4',
  5034. 5034   'block_callback' => '',
  5035. 5035   'description' => '',
  5036. 5036   'position' => '',
  5037. 5037   'weight' => '0',
  5038. 5038   'file' => '',
  5039. 5039 ))
  5040. 5040 ->values(array(
  5041. 5041   'path' => 'admin/settings/actions/delete/%',
  5042. 5042   'load_functions' => 'a:1:{i:4;s:12:"actions_load";}',
  5043. 5043   'to_arg_functions' => '',
  5044. 5044   'access_callback' => 'user_access',
  5045. 5045   'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}',
  5046. 5046   'page_callback' => 'drupal_get_form',
  5047. 5047   'page_arguments' => 'a:2:{i:0;s:26:"system_actions_delete_form";i:1;i:4;}',
  5048. 5048   'fit' => '30',
  5049. 5049   'number_parts' => '5',
  5050. 5050   'tab_parent' => '',
  5051. 5051   'tab_root' => 'admin/settings/actions/delete/%',
  5052. 5052   'title' => 'Delete action',
  5053. 5053   'title_callback' => 't',
  5054. 5054   'title_arguments' => '',
  5055. 5055   'type' => '4',
  5056. 5056   'block_callback' => '',
  5057. 5057   'description' => 'Delete an action.',
  5058. 5058   'position' => '',
  5059. 5059   'weight' => '0',
  5060. 5060   'file' => '',
  5061. 5061 ))
  5062. 5062 ->values(array(
  5063. 5063   'path' => 'admin/settings/actions/manage',
  5064. 5064   'load_functions' => '',
  5065. 5065   'to_arg_functions' => '',
  5066. 5066   'access_callback' => 'user_access',
  5067. 5067   'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}',
  5068. 5068   'page_callback' => 'system_actions_manage',
  5069. 5069   'page_arguments' => 'a:0:{}',
  5070. 5070   'fit' => '15',
  5071. 5071   'number_parts' => '4',
  5072. 5072   'tab_parent' => 'admin/settings/actions',
  5073. 5073   'tab_root' => 'admin/settings/actions',
  5074. 5074   'title' => 'Manage actions',
  5075. 5075   'title_callback' => 't',
  5076. 5076   'title_arguments' => '',
  5077. 5077   'type' => '136',
  5078. 5078   'block_callback' => '',
  5079. 5079   'description' => 'Manage the actions defined for your site.',
  5080. 5080   'position' => '',
  5081. 5081   'weight' => '-2',
  5082. 5082   'file' => '',
  5083. 5083 ))
  5084. 5084 ->values(array(
  5085. 5085   'path' => 'admin/settings/actions/orphan',
  5086. 5086   'load_functions' => '',
  5087. 5087   'to_arg_functions' => '',
  5088. 5088   'access_callback' => 'user_access',
  5089. 5089   'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}',
  5090. 5090   'page_callback' => 'system_actions_remove_orphans',
  5091. 5091   'page_arguments' => 'a:0:{}',
  5092. 5092   'fit' => '15',
  5093. 5093   'number_parts' => '4',
  5094. 5094   'tab_parent' => '',
  5095. 5095   'tab_root' => 'admin/settings/actions/orphan',
  5096. 5096   'title' => 'Remove orphans',
  5097. 5097   'title_callback' => 't',
  5098. 5098   'title_arguments' => '',
  5099. 5099   'type' => '4',
  5100. 5100   'block_callback' => '',
  5101. 5101   'description' => '',
  5102. 5102   'position' => '',
  5103. 5103   'weight' => '0',
  5104. 5104   'file' => '',
  5105. 5105 ))
  5106. 5106 ->values(array(
  5107. 5107   'path' => 'admin/settings/admin',
  5108. 5108   'load_functions' => '',
  5109. 5109   'to_arg_functions' => '',
  5110. 5110   'access_callback' => 'user_access',
  5111. 5111   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
  5112. 5112   'page_callback' => 'drupal_get_form',
  5113. 5113   'page_arguments' => 'a:1:{i:0;s:27:"system_admin_theme_settings";}',
  5114. 5114   'fit' => '7',
  5115. 5115   'number_parts' => '3',
  5116. 5116   'tab_parent' => '',
  5117. 5117   'tab_root' => 'admin/settings/admin',
  5118. 5118   'title' => 'Administration theme',
  5119. 5119   'title_callback' => 't',
  5120. 5120   'title_arguments' => '',
  5121. 5121   'type' => '6',
  5122. 5122   'block_callback' => 'system_admin_theme_settings',
  5123. 5123   'description' => 'Settings for how your administrative pages should look.',
  5124. 5124   'position' => 'left',
  5125. 5125   'weight' => '0',
  5126. 5126   'file' => 'modules/system/system.admin.inc',
  5127. 5127 ))
  5128. 5128 ->values(array(
  5129. 5129   'path' => 'admin/settings/clean-urls',
  5130. 5130   'load_functions' => '',
  5131. 5131   'to_arg_functions' => '',
  5132. 5132   'access_callback' => 'user_access',
  5133. 5133   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
  5134. 5134   'page_callback' => 'drupal_get_form',
  5135. 5135   'page_arguments' => 'a:1:{i:0;s:25:"system_clean_url_settings";}',
  5136. 5136   'fit' => '7',
  5137. 5137   'number_parts' => '3',
  5138. 5138   'tab_parent' => '',
  5139. 5139   'tab_root' => 'admin/settings/clean-urls',
  5140. 5140   'title' => 'Clean URLs',
  5141. 5141   'title_callback' => 't',
  5142. 5142   'title_arguments' => '',
  5143. 5143   'type' => '6',
  5144. 5144   'block_callback' => '',
  5145. 5145   'description' => 'Enable or disable clean URLs for your site.',
  5146. 5146   'position' => '',
  5147. 5147   'weight' => '0',
  5148. 5148   'file' => 'modules/system/system.admin.inc',
  5149. 5149 ))
  5150. 5150 ->values(array(
  5151. 5151   'path' => 'admin/settings/clean-urls/check',
  5152. 5152   'load_functions' => '',
  5153. 5153   'to_arg_functions' => '',
  5154. 5154   'access_callback' => '1',
  5155. 5155   'access_arguments' => 'a:0:{}',
  5156. 5156   'page_callback' => 'drupal_json',
  5157. 5157   'page_arguments' => 'a:1:{i:0;a:1:{s:6:"status";b:1;}}',
  5158. 5158   'fit' => '15',
  5159. 5159   'number_parts' => '4',
  5160. 5160   'tab_parent' => '',
  5161. 5161   'tab_root' => 'admin/settings/clean-urls/check',
  5162. 5162   'title' => 'Clean URL check',
  5163. 5163   'title_callback' => 't',
  5164. 5164   'title_arguments' => '',
  5165. 5165   'type' => '4',
  5166. 5166   'block_callback' => '',
  5167. 5167   'description' => '',
  5168. 5168   'position' => '',
  5169. 5169   'weight' => '0',
  5170. 5170   'file' => '',
  5171. 5171 ))
  5172. 5172 ->values(array(
  5173. 5173   'path' => 'admin/settings/date-time',
  5174. 5174   'load_functions' => '',
  5175. 5175   'to_arg_functions' => '',
  5176. 5176   'access_callback' => 'user_access',
  5177. 5177   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
  5178. 5178   'page_callback' => 'drupal_get_form',
  5179. 5179   'page_arguments' => 'a:1:{i:0;s:25:"system_date_time_settings";}',
  5180. 5180   'fit' => '7',
  5181. 5181   'number_parts' => '3',
  5182. 5182   'tab_parent' => '',
  5183. 5183   'tab_root' => 'admin/settings/date-time',
  5184. 5184   'title' => 'Date and time',
  5185. 5185   'title_callback' => 't',
  5186. 5186   'title_arguments' => '',
  5187. 5187   'type' => '6',
  5188. 5188   'block_callback' => '',
  5189. 5189   'description' => "Settings for how Drupal displays date and time, as well as the system's default timezone.",
  5190. 5190   'position' => '',
  5191. 5191   'weight' => '0',
  5192. 5192   'file' => 'modules/system/system.admin.inc',
  5193. 5193 ))
  5194. 5194 ->values(array(
  5195. 5195   'path' => 'admin/settings/date-time/lookup',
  5196. 5196   'load_functions' => '',
  5197. 5197   'to_arg_functions' => '',
  5198. 5198   'access_callback' => 'user_access',
  5199. 5199   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
  5200. 5200   'page_callback' => 'system_date_time_lookup',
  5201. 5201   'page_arguments' => 'a:0:{}',
  5202. 5202   'fit' => '15',
  5203. 5203   'number_parts' => '4',
  5204. 5204   'tab_parent' => '',
  5205. 5205   'tab_root' => 'admin/settings/date-time/lookup',
  5206. 5206   'title' => 'Date and time lookup',
  5207. 5207   'title_callback' => 't',
  5208. 5208   'title_arguments' => '',
  5209. 5209   'type' => '4',
  5210. 5210   'block_callback' => '',
  5211. 5211   'description' => '',
  5212. 5212   'position' => '',
  5213. 5213   'weight' => '0',
  5214. 5214   'file' => 'modules/system/system.admin.inc',
  5215. 5215 ))
  5216. 5216 ->values(array(
  5217. 5217   'path' => 'admin/settings/error-reporting',
  5218. 5218   'load_functions' => '',
  5219. 5219   'to_arg_functions' => '',
  5220. 5220   'access_callback' => 'user_access',
  5221. 5221   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
  5222. 5222   'page_callback' => 'drupal_get_form',
  5223. 5223   'page_arguments' => 'a:1:{i:0;s:31:"system_error_reporting_settings";}',
  5224. 5224   'fit' => '7',
  5225. 5225   'number_parts' => '3',
  5226. 5226   'tab_parent' => '',
  5227. 5227   'tab_root' => 'admin/settings/error-reporting',
  5228. 5228   'title' => 'Error reporting',
  5229. 5229   'title_callback' => 't',
  5230. 5230   'title_arguments' => '',
  5231. 5231   'type' => '6',
  5232. 5232   'block_callback' => '',
  5233. 5233   'description' => 'Control how Drupal deals with errors including 403/404 errors as well as PHP error reporting.',
  5234. 5234   'position' => '',
  5235. 5235   'weight' => '0',
  5236. 5236   'file' => 'modules/system/system.admin.inc',
  5237. 5237 ))
  5238. 5238 ->values(array(
  5239. 5239   'path' => 'admin/settings/file-system',
  5240. 5240   'load_functions' => '',
  5241. 5241   'to_arg_functions' => '',
  5242. 5242   'access_callback' => 'user_access',
  5243. 5243   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
  5244. 5244   'page_callback' => 'drupal_get_form',
  5245. 5245   'page_arguments' => 'a:1:{i:0;s:27:"system_file_system_settings";}',
  5246. 5246   'fit' => '7',
  5247. 5247   'number_parts' => '3',
  5248. 5248   'tab_parent' => '',
  5249. 5249   'tab_root' => 'admin/settings/file-system',
  5250. 5250   'title' => 'File system',
  5251. 5251   'title_callback' => 't',
  5252. 5252   'title_arguments' => '',
  5253. 5253   'type' => '6',
  5254. 5254   'block_callback' => '',
  5255. 5255   'description' => 'Tell Drupal where to store uploaded files and how they are accessed.',
  5256. 5256   'position' => '',
  5257. 5257   'weight' => '0',
  5258. 5258   'file' => 'modules/system/system.admin.inc',
  5259. 5259 ))
  5260. 5260 ->values(array(
  5261. 5261   'path' => 'admin/settings/filters',
  5262. 5262   'load_functions' => '',
  5263. 5263   'to_arg_functions' => '',
  5264. 5264   'access_callback' => 'user_access',
  5265. 5265   'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}',
  5266. 5266   'page_callback' => 'drupal_get_form',
  5267. 5267   'page_arguments' => 'a:1:{i:0;s:21:"filter_admin_overview";}',
  5268. 5268   'fit' => '7',
  5269. 5269   'number_parts' => '3',
  5270. 5270   'tab_parent' => '',
  5271. 5271   'tab_root' => 'admin/settings/filters',
  5272. 5272   'title' => 'Input formats',
  5273. 5273   'title_callback' => 't',
  5274. 5274   'title_arguments' => '',
  5275. 5275   'type' => '6',
  5276. 5276   'block_callback' => '',
  5277. 5277   'description' => 'Configure how content input by users is filtered, including allowed HTML tags. Also allows enabling of module-provided filters.',
  5278. 5278   'position' => '',
  5279. 5279   'weight' => '0',
  5280. 5280   'file' => 'modules/filter/filter.admin.inc',
  5281. 5281 ))
  5282. 5282 ->values(array(
  5283. 5283   'path' => 'admin/settings/filters/%',
  5284. 5284   'load_functions' => 'a:1:{i:3;s:18:"filter_format_load";}',
  5285. 5285   'to_arg_functions' => '',
  5286. 5286   'access_callback' => 'user_access',
  5287. 5287   'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}',
  5288. 5288   'page_callback' => 'filter_admin_format_page',
  5289. 5289   'page_arguments' => 'a:1:{i:0;i:3;}',
  5290. 5290   'fit' => '14',
  5291. 5291   'number_parts' => '4',
  5292. 5292   'tab_parent' => '',
  5293. 5293   'tab_root' => 'admin/settings/filters/%',
  5294. 5294   'title' => '',
  5295. 5295   'title_callback' => 'filter_admin_format_title',
  5296. 5296   'title_arguments' => 'a:1:{i:0;i:3;}',
  5297. 5297   'type' => '4',
  5298. 5298   'block_callback' => '',
  5299. 5299   'description' => '',
  5300. 5300   'position' => '',
  5301. 5301   'weight' => '0',
  5302. 5302   'file' => 'modules/filter/filter.admin.inc',
  5303. 5303 ))
  5304. 5304 ->values(array(
  5305. 5305   'path' => 'admin/settings/filters/%/configure',
  5306. 5306   'load_functions' => 'a:1:{i:3;s:18:"filter_format_load";}',
  5307. 5307   'to_arg_functions' => '',
  5308. 5308   'access_callback' => 'user_access',
  5309. 5309   'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}',
  5310. 5310   'page_callback' => 'filter_admin_configure_page',
  5311. 5311   'page_arguments' => 'a:1:{i:0;i:3;}',
  5312. 5312   'fit' => '29',
  5313. 5313   'number_parts' => '5',
  5314. 5314   'tab_parent' => 'admin/settings/filters/%',
  5315. 5315   'tab_root' => 'admin/settings/filters/%',
  5316. 5316   'title' => 'Configure',
  5317. 5317   'title_callback' => 't',
  5318. 5318   'title_arguments' => '',
  5319. 5319   'type' => '128',
  5320. 5320   'block_callback' => '',
  5321. 5321   'description' => '',
  5322. 5322   'position' => '',
  5323. 5323   'weight' => '1',
  5324. 5324   'file' => 'modules/filter/filter.admin.inc',
  5325. 5325 ))
  5326. 5326 ->values(array(
  5327. 5327   'path' => 'admin/settings/filters/%/edit',
  5328. 5328   'load_functions' => 'a:1:{i:3;s:18:"filter_format_load";}',
  5329. 5329   'to_arg_functions' => '',
  5330. 5330   'access_callback' => 'user_access',
  5331. 5331   'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}',
  5332. 5332   'page_callback' => 'filter_admin_format_page',
  5333. 5333   'page_arguments' => 'a:1:{i:0;i:3;}',
  5334. 5334   'fit' => '29',
  5335. 5335   'number_parts' => '5',
  5336. 5336   'tab_parent' => 'admin/settings/filters/%',
  5337. 5337   'tab_root' => 'admin/settings/filters/%',
  5338. 5338   'title' => 'Edit',
  5339. 5339   'title_callback' => 't',
  5340. 5340   'title_arguments' => '',
  5341. 5341   'type' => '136',
  5342. 5342   'block_callback' => '',
  5343. 5343   'description' => '',
  5344. 5344   'position' => '',
  5345. 5345   'weight' => '0',
  5346. 5346   'file' => 'modules/filter/filter.admin.inc',
  5347. 5347 ))
  5348. 5348 ->values(array(
  5349. 5349   'path' => 'admin/settings/filters/%/order',
  5350. 5350   'load_functions' => 'a:1:{i:3;s:18:"filter_format_load";}',
  5351. 5351   'to_arg_functions' => '',
  5352. 5352   'access_callback' => 'user_access',
  5353. 5353   'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}',
  5354. 5354   'page_callback' => 'filter_admin_order_page',
  5355. 5355   'page_arguments' => 'a:1:{i:0;i:3;}',
  5356. 5356   'fit' => '29',
  5357. 5357   'number_parts' => '5',
  5358. 5358   'tab_parent' => 'admin/settings/filters/%',
  5359. 5359   'tab_root' => 'admin/settings/filters/%',
  5360. 5360   'title' => 'Rearrange',
  5361. 5361   'title_callback' => 't',
  5362. 5362   'title_arguments' => '',
  5363. 5363   'type' => '128',
  5364. 5364   'block_callback' => '',
  5365. 5365   'description' => '',
  5366. 5366   'position' => '',
  5367. 5367   'weight' => '2',
  5368. 5368   'file' => 'modules/filter/filter.admin.inc',
  5369. 5369 ))
  5370. 5370 ->values(array(
  5371. 5371   'path' => 'admin/settings/filters/add',
  5372. 5372   'load_functions' => '',
  5373. 5373   'to_arg_functions' => '',
  5374. 5374   'access_callback' => 'user_access',
  5375. 5375   'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}',
  5376. 5376   'page_callback' => 'filter_admin_format_page',
  5377. 5377   'page_arguments' => 'a:0:{}',
  5378. 5378   'fit' => '15',
  5379. 5379   'number_parts' => '4',
  5380. 5380   'tab_parent' => 'admin/settings/filters',
  5381. 5381   'tab_root' => 'admin/settings/filters',
  5382. 5382   'title' => 'Add input format',
  5383. 5383   'title_callback' => 't',
  5384. 5384   'title_arguments' => '',
  5385. 5385   'type' => '128',
  5386. 5386   'block_callback' => '',
  5387. 5387   'description' => '',
  5388. 5388   'position' => '',
  5389. 5389   'weight' => '1',
  5390. 5390   'file' => 'modules/filter/filter.admin.inc',
  5391. 5391 ))
  5392. 5392 ->values(array(
  5393. 5393   'path' => 'admin/settings/filters/delete',
  5394. 5394   'load_functions' => '',
  5395. 5395   'to_arg_functions' => '',
  5396. 5396   'access_callback' => 'user_access',
  5397. 5397   'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}',
  5398. 5398   'page_callback' => 'drupal_get_form',
  5399. 5399   'page_arguments' => 'a:1:{i:0;s:19:"filter_admin_delete";}',
  5400. 5400   'fit' => '15',
  5401. 5401   'number_parts' => '4',
  5402. 5402   'tab_parent' => '',
  5403. 5403   'tab_root' => 'admin/settings/filters/delete',
  5404. 5404   'title' => 'Delete input format',
  5405. 5405   'title_callback' => 't',
  5406. 5406   'title_arguments' => '',
  5407. 5407   'type' => '4',
  5408. 5408   'block_callback' => '',
  5409. 5409   'description' => '',
  5410. 5410   'position' => '',
  5411. 5411   'weight' => '0',
  5412. 5412   'file' => 'modules/filter/filter.admin.inc',
  5413. 5413 ))
  5414. 5414 ->values(array(
  5415. 5415   'path' => 'admin/settings/filters/list',
  5416. 5416   'load_functions' => '',
  5417. 5417   'to_arg_functions' => '',
  5418. 5418   'access_callback' => 'user_access',
  5419. 5419   'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}',
  5420. 5420   'page_callback' => 'drupal_get_form',
  5421. 5421   'page_arguments' => 'a:1:{i:0;s:21:"filter_admin_overview";}',
  5422. 5422   'fit' => '15',
  5423. 5423   'number_parts' => '4',
  5424. 5424   'tab_parent' => 'admin/settings/filters',
  5425. 5425   'tab_root' => 'admin/settings/filters',
  5426. 5426   'title' => 'List',
  5427. 5427   'title_callback' => 't',
  5428. 5428   'title_arguments' => '',
  5429. 5429   'type' => '136',
  5430. 5430   'block_callback' => '',
  5431. 5431   'description' => '',
  5432. 5432   'position' => '',
  5433. 5433   'weight' => '0',
  5434. 5434   'file' => 'modules/filter/filter.admin.inc',
  5435. 5435 ))
  5436. 5436 ->values(array(
  5437. 5437   'path' => 'admin/settings/image-toolkit',
  5438. 5438   'load_functions' => '',
  5439. 5439   'to_arg_functions' => '',
  5440. 5440   'access_callback' => 'user_access',
  5441. 5441   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
  5442. 5442   'page_callback' => 'drupal_get_form',
  5443. 5443   'page_arguments' => 'a:1:{i:0;s:29:"system_image_toolkit_settings";}',
  5444. 5444   'fit' => '7',
  5445. 5445   'number_parts' => '3',
  5446. 5446   'tab_parent' => '',
  5447. 5447   'tab_root' => 'admin/settings/image-toolkit',
  5448. 5448   'title' => 'Image toolkit',
  5449. 5449   'title_callback' => 't',
  5450. 5450   'title_arguments' => '',
  5451. 5451   'type' => '6',
  5452. 5452   'block_callback' => '',
  5453. 5453   'description' => 'Choose which image toolkit to use if you have installed optional toolkits.',
  5454. 5454   'position' => '',
  5455. 5455   'weight' => '0',
  5456. 5456   'file' => 'modules/system/system.admin.inc',
  5457. 5457 ))
  5458. 5458 ->values(array(
  5459. 5459   'path' => 'admin/settings/logging',
  5460. 5460   'load_functions' => '',
  5461. 5461   'to_arg_functions' => '',
  5462. 5462   'access_callback' => 'user_access',
  5463. 5463   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
  5464. 5464   'page_callback' => 'system_logging_overview',
  5465. 5465   'page_arguments' => 'a:0:{}',
  5466. 5466   'fit' => '7',
  5467. 5467   'number_parts' => '3',
  5468. 5468   'tab_parent' => '',
  5469. 5469   'tab_root' => 'admin/settings/logging',
  5470. 5470   'title' => 'Logging and alerts',
  5471. 5471   'title_callback' => 't',
  5472. 5472   'title_arguments' => '',
  5473. 5473   'type' => '6',
  5474. 5474   'block_callback' => '',
  5475. 5475   'description' => "Settings for logging and alerts modules. Various modules can route Drupal's system events to different destination, such as syslog, database, email, ...etc.",
  5476. 5476   'position' => '',
  5477. 5477   'weight' => '0',
  5478. 5478   'file' => 'modules/system/system.admin.inc',
  5479. 5479 ))
  5480. 5480 ->values(array(
  5481. 5481   'path' => 'admin/settings/logging/dblog',
  5482. 5482   'load_functions' => '',
  5483. 5483   'to_arg_functions' => '',
  5484. 5484   'access_callback' => 'user_access',
  5485. 5485   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
  5486. 5486   'page_callback' => 'drupal_get_form',
  5487. 5487   'page_arguments' => 'a:1:{i:0;s:20:"dblog_admin_settings";}',
  5488. 5488   'fit' => '15',
  5489. 5489   'number_parts' => '4',
  5490. 5490   'tab_parent' => '',
  5491. 5491   'tab_root' => 'admin/settings/logging/dblog',
  5492. 5492   'title' => 'Database logging',
  5493. 5493   'title_callback' => 't',
  5494. 5494   'title_arguments' => '',
  5495. 5495   'type' => '6',
  5496. 5496   'block_callback' => '',
  5497. 5497   'description' => 'Settings for logging to the Drupal database logs. This is the most common method for small to medium sites on shared hosting. The logs are viewable from the admin pages.',
  5498. 5498   'position' => '',
  5499. 5499   'weight' => '0',
  5500. 5500   'file' => 'modules/dblog/dblog.admin.inc',
  5501. 5501 ))
  5502. 5502 ->values(array(
  5503. 5503   'path' => 'admin/settings/performance',
  5504. 5504   'load_functions' => '',
  5505. 5505   'to_arg_functions' => '',
  5506. 5506   'access_callback' => 'user_access',
  5507. 5507   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
  5508. 5508   'page_callback' => 'drupal_get_form',
  5509. 5509   'page_arguments' => 'a:1:{i:0;s:27:"system_performance_settings";}',
  5510. 5510   'fit' => '7',
  5511. 5511   'number_parts' => '3',
  5512. 5512   'tab_parent' => '',
  5513. 5513   'tab_root' => 'admin/settings/performance',
  5514. 5514   'title' => 'Performance',
  5515. 5515   'title_callback' => 't',
  5516. 5516   'title_arguments' => '',
  5517. 5517   'type' => '6',
  5518. 5518   'block_callback' => '',
  5519. 5519   'description' => 'Enable or disable page caching for anonymous users and set CSS and JS bandwidth optimization options.',
  5520. 5520   'position' => '',
  5521. 5521   'weight' => '0',
  5522. 5522   'file' => 'modules/system/system.admin.inc',
  5523. 5523 ))
  5524. 5524 ->values(array(
  5525. 5525   'path' => 'admin/settings/site-information',
  5526. 5526   'load_functions' => '',
  5527. 5527   'to_arg_functions' => '',
  5528. 5528   'access_callback' => 'user_access',
  5529. 5529   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
  5530. 5530   'page_callback' => 'drupal_get_form',
  5531. 5531   'page_arguments' => 'a:1:{i:0;s:32:"system_site_information_settings";}',
  5532. 5532   'fit' => '7',
  5533. 5533   'number_parts' => '3',
  5534. 5534   'tab_parent' => '',
  5535. 5535   'tab_root' => 'admin/settings/site-information',
  5536. 5536   'title' => 'Site information',
  5537. 5537   'title_callback' => 't',
  5538. 5538   'title_arguments' => '',
  5539. 5539   'type' => '6',
  5540. 5540   'block_callback' => '',
  5541. 5541   'description' => 'Change basic site information, such as the site name, slogan, e-mail address, mission, front page and more.',
  5542. 5542   'position' => '',
  5543. 5543   'weight' => '0',
  5544. 5544   'file' => 'modules/system/system.admin.inc',
  5545. 5545 ))
  5546. 5546 ->values(array(
  5547. 5547   'path' => 'admin/settings/site-maintenance',
  5548. 5548   'load_functions' => '',
  5549. 5549   'to_arg_functions' => '',
  5550. 5550   'access_callback' => 'user_access',
  5551. 5551   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
  5552. 5552   'page_callback' => 'drupal_get_form',
  5553. 5553   'page_arguments' => 'a:1:{i:0;s:32:"system_site_maintenance_settings";}',
  5554. 5554   'fit' => '7',
  5555. 5555   'number_parts' => '3',
  5556. 5556   'tab_parent' => '',
  5557. 5557   'tab_root' => 'admin/settings/site-maintenance',
  5558. 5558   'title' => 'Site maintenance',
  5559. 5559   'title_callback' => 't',
  5560. 5560   'title_arguments' => '',
  5561. 5561   'type' => '6',
  5562. 5562   'block_callback' => '',
  5563. 5563   'description' => 'Take the site off-line for maintenance or bring it back online.',
  5564. 5564   'position' => '',
  5565. 5565   'weight' => '0',
  5566. 5566   'file' => 'modules/system/system.admin.inc',
  5567. 5567 ))
  5568. 5568 ->values(array(
  5569. 5569   'path' => 'admin/user',
  5570. 5570   'load_functions' => '',
  5571. 5571   'to_arg_functions' => '',
  5572. 5572   'access_callback' => 'user_access',
  5573. 5573   'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
  5574. 5574   'page_callback' => 'system_admin_menu_block_page',
  5575. 5575   'page_arguments' => 'a:0:{}',
  5576. 5576   'fit' => '3',
  5577. 5577   'number_parts' => '2',
  5578. 5578   'tab_parent' => '',
  5579. 5579   'tab_root' => 'admin/user',
  5580. 5580   'title' => 'User management',
  5581. 5581   'title_callback' => 't',
  5582. 5582   'title_arguments' => '',
  5583. 5583   'type' => '6',
  5584. 5584   'block_callback' => '',
  5585. 5585   'description' => "Manage your site's users, groups and access to site features.",
  5586. 5586   'position' => 'left',
  5587. 5587   'weight' => '0',
  5588. 5588   'file' => 'modules/system/system.admin.inc',
  5589. 5589 ))
  5590. 5590 ->values(array(
  5591. 5591   'path' => 'admin/user/permissions',
  5592. 5592   'load_functions' => '',
  5593. 5593   'to_arg_functions' => '',
  5594. 5594   'access_callback' => 'user_access',
  5595. 5595   'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}',
  5596. 5596   'page_callback' => 'drupal_get_form',
  5597. 5597   'page_arguments' => 'a:1:{i:0;s:15:"user_admin_perm";}',
  5598. 5598   'fit' => '7',
  5599. 5599   'number_parts' => '3',
  5600. 5600   'tab_parent' => '',
  5601. 5601   'tab_root' => 'admin/user/permissions',
  5602. 5602   'title' => 'Permissions',
  5603. 5603   'title_callback' => 't',
  5604. 5604   'title_arguments' => '',
  5605. 5605   'type' => '6',
  5606. 5606   'block_callback' => '',
  5607. 5607   'description' => 'Determine access to features by selecting permissions for roles.',
  5608. 5608   'position' => '',
  5609. 5609   'weight' => '0',
  5610. 5610   'file' => 'modules/user/user.admin.inc',
  5611. 5611 ))
  5612. 5612 ->values(array(
  5613. 5613   'path' => 'admin/user/roles',
  5614. 5614   'load_functions' => '',
  5615. 5615   'to_arg_functions' => '',
  5616. 5616   'access_callback' => 'user_access',
  5617. 5617   'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}',
  5618. 5618   'page_callback' => 'drupal_get_form',
  5619. 5619   'page_arguments' => 'a:1:{i:0;s:19:"user_admin_new_role";}',
  5620. 5620   'fit' => '7',
  5621. 5621   'number_parts' => '3',
  5622. 5622   'tab_parent' => '',
  5623. 5623   'tab_root' => 'admin/user/roles',
  5624. 5624   'title' => 'Roles',
  5625. 5625   'title_callback' => 't',
  5626. 5626   'title_arguments' => '',
  5627. 5627   'type' => '6',
  5628. 5628   'block_callback' => '',
  5629. 5629   'description' => 'List, edit, or add user roles.',
  5630. 5630   'position' => '',
  5631. 5631   'weight' => '0',
  5632. 5632   'file' => 'modules/user/user.admin.inc',
  5633. 5633 ))
  5634. 5634 ->values(array(
  5635. 5635   'path' => 'admin/user/roles/edit',
  5636. 5636   'load_functions' => '',
  5637. 5637   'to_arg_functions' => '',
  5638. 5638   'access_callback' => 'user_access',
  5639. 5639   'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}',
  5640. 5640   'page_callback' => 'drupal_get_form',
  5641. 5641   'page_arguments' => 'a:1:{i:0;s:15:"user_admin_role";}',
  5642. 5642   'fit' => '15',
  5643. 5643   'number_parts' => '4',
  5644. 5644   'tab_parent' => '',
  5645. 5645   'tab_root' => 'admin/user/roles/edit',
  5646. 5646   'title' => 'Edit role',
  5647. 5647   'title_callback' => 't',
  5648. 5648   'title_arguments' => '',
  5649. 5649   'type' => '4',
  5650. 5650   'block_callback' => '',
  5651. 5651   'description' => '',
  5652. 5652   'position' => '',
  5653. 5653   'weight' => '0',
  5654. 5654   'file' => 'modules/user/user.admin.inc',
  5655. 5655 ))
  5656. 5656 ->values(array(
  5657. 5657   'path' => 'admin/user/rules',
  5658. 5658   'load_functions' => '',
  5659. 5659   'to_arg_functions' => '',
  5660. 5660   'access_callback' => 'user_access',
  5661. 5661   'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}',
  5662. 5662   'page_callback' => 'user_admin_access',
  5663. 5663   'page_arguments' => 'a:0:{}',
  5664. 5664   'fit' => '7',
  5665. 5665   'number_parts' => '3',
  5666. 5666   'tab_parent' => '',
  5667. 5667   'tab_root' => 'admin/user/rules',
  5668. 5668   'title' => 'Access rules',
  5669. 5669   'title_callback' => 't',
  5670. 5670   'title_arguments' => '',
  5671. 5671   'type' => '6',
  5672. 5672   'block_callback' => '',
  5673. 5673   'description' => 'List and create rules to disallow usernames, e-mail addresses, and IP addresses.',
  5674. 5674   'position' => '',
  5675. 5675   'weight' => '0',
  5676. 5676   'file' => 'modules/user/user.admin.inc',
  5677. 5677 ))
  5678. 5678 ->values(array(
  5679. 5679   'path' => 'admin/user/rules/add',
  5680. 5680   'load_functions' => '',
  5681. 5681   'to_arg_functions' => '',
  5682. 5682   'access_callback' => 'user_access',
  5683. 5683   'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}',
  5684. 5684   'page_callback' => 'user_admin_access_add',
  5685. 5685   'page_arguments' => 'a:0:{}',
  5686. 5686   'fit' => '15',
  5687. 5687   'number_parts' => '4',
  5688. 5688   'tab_parent' => 'admin/user/rules',
  5689. 5689   'tab_root' => 'admin/user/rules',
  5690. 5690   'title' => 'Add rule',
  5691. 5691   'title_callback' => 't',
  5692. 5692   'title_arguments' => '',
  5693. 5693   'type' => '128',
  5694. 5694   'block_callback' => '',
  5695. 5695   'description' => '',
  5696. 5696   'position' => '',
  5697. 5697   'weight' => '0',
  5698. 5698   'file' => 'modules/user/user.admin.inc',
  5699. 5699 ))
  5700. 5700 ->values(array(
  5701. 5701   'path' => 'admin/user/rules/check',
  5702. 5702   'load_functions' => '',
  5703. 5703   'to_arg_functions' => '',
  5704. 5704   'access_callback' => 'user_access',
  5705. 5705   'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}',
  5706. 5706   'page_callback' => 'user_admin_access_check',
  5707. 5707   'page_arguments' => 'a:0:{}',
  5708. 5708   'fit' => '15',
  5709. 5709   'number_parts' => '4',
  5710. 5710   'tab_parent' => 'admin/user/rules',
  5711. 5711   'tab_root' => 'admin/user/rules',
  5712. 5712   'title' => 'Check rules',
  5713. 5713   'title_callback' => 't',
  5714. 5714   'title_arguments' => '',
  5715. 5715   'type' => '128',
  5716. 5716   'block_callback' => '',
  5717. 5717   'description' => '',
  5718. 5718   'position' => '',
  5719. 5719   'weight' => '0',
  5720. 5720   'file' => 'modules/user/user.admin.inc',
  5721. 5721 ))
  5722. 5722 ->values(array(
  5723. 5723   'path' => 'admin/user/rules/delete',
  5724. 5724   'load_functions' => '',
  5725. 5725   'to_arg_functions' => '',
  5726. 5726   'access_callback' => 'user_access',
  5727. 5727   'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}',
  5728. 5728   'page_callback' => 'drupal_get_form',
  5729. 5729   'page_arguments' => 'a:1:{i:0;s:32:"user_admin_access_delete_confirm";}',
  5730. 5730   'fit' => '15',
  5731. 5731   'number_parts' => '4',
  5732. 5732   'tab_parent' => '',
  5733. 5733   'tab_root' => 'admin/user/rules/delete',
  5734. 5734   'title' => 'Delete rule',
  5735. 5735   'title_callback' => 't',
  5736. 5736   'title_arguments' => '',
  5737. 5737   'type' => '4',
  5738. 5738   'block_callback' => '',
  5739. 5739   'description' => '',
  5740. 5740   'position' => '',
  5741. 5741   'weight' => '0',
  5742. 5742   'file' => 'modules/user/user.admin.inc',
  5743. 5743 ))
  5744. 5744 ->values(array(
  5745. 5745   'path' => 'admin/user/rules/edit',
  5746. 5746   'load_functions' => '',
  5747. 5747   'to_arg_functions' => '',
  5748. 5748   'access_callback' => 'user_access',
  5749. 5749   'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}',
  5750. 5750   'page_callback' => 'user_admin_access_edit',
  5751. 5751   'page_arguments' => 'a:0:{}',
  5752. 5752   'fit' => '15',
  5753. 5753   'number_parts' => '4',
  5754. 5754   'tab_parent' => '',
  5755. 5755   'tab_root' => 'admin/user/rules/edit',
  5756. 5756   'title' => 'Edit rule',
  5757. 5757   'title_callback' => 't',
  5758. 5758   'title_arguments' => '',
  5759. 5759   'type' => '4',
  5760. 5760   'block_callback' => '',
  5761. 5761   'description' => '',
  5762. 5762   'position' => '',
  5763. 5763   'weight' => '0',
  5764. 5764   'file' => 'modules/user/user.admin.inc',
  5765. 5765 ))
  5766. 5766 ->values(array(
  5767. 5767   'path' => 'admin/user/rules/list',
  5768. 5768   'load_functions' => '',
  5769. 5769   'to_arg_functions' => '',
  5770. 5770   'access_callback' => 'user_access',
  5771. 5771   'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}',
  5772. 5772   'page_callback' => 'user_admin_access',
  5773. 5773   'page_arguments' => 'a:0:{}',
  5774. 5774   'fit' => '15',
  5775. 5775   'number_parts' => '4',
  5776. 5776   'tab_parent' => 'admin/user/rules',
  5777. 5777   'tab_root' => 'admin/user/rules',
  5778. 5778   'title' => 'List',
  5779. 5779   'title_callback' => 't',
  5780. 5780   'title_arguments' => '',
  5781. 5781   'type' => '136',
  5782. 5782   'block_callback' => '',
  5783. 5783   'description' => '',
  5784. 5784   'position' => '',
  5785. 5785   'weight' => '-10',
  5786. 5786   'file' => 'modules/user/user.admin.inc',
  5787. 5787 ))
  5788. 5788 ->values(array(
  5789. 5789   'path' => 'admin/user/settings',
  5790. 5790   'load_functions' => '',
  5791. 5791   'to_arg_functions' => '',
  5792. 5792   'access_callback' => 'user_access',
  5793. 5793   'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
  5794. 5794   'page_callback' => 'drupal_get_form',
  5795. 5795   'page_arguments' => 'a:1:{i:0;s:19:"user_admin_settings";}',
  5796. 5796   'fit' => '7',
  5797. 5797   'number_parts' => '3',
  5798. 5798   'tab_parent' => '',
  5799. 5799   'tab_root' => 'admin/user/settings',
  5800. 5800   'title' => 'User settings',
  5801. 5801   'title_callback' => 't',
  5802. 5802   'title_arguments' => '',
  5803. 5803   'type' => '6',
  5804. 5804   'block_callback' => '',
  5805. 5805   'description' => 'Configure default behavior of users, including registration requirements, e-mails, and user pictures.',
  5806. 5806   'position' => '',
  5807. 5807   'weight' => '0',
  5808. 5808   'file' => 'modules/user/user.admin.inc',
  5809. 5809 ))
  5810. 5810 ->values(array(
  5811. 5811   'path' => 'admin/user/user',
  5812. 5812   'load_functions' => '',
  5813. 5813   'to_arg_functions' => '',
  5814. 5814   'access_callback' => 'user_access',
  5815. 5815   'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
  5816. 5816   'page_callback' => 'user_admin',
  5817. 5817   'page_arguments' => 'a:1:{i:0;s:4:"list";}',
  5818. 5818   'fit' => '7',
  5819. 5819   'number_parts' => '3',
  5820. 5820   'tab_parent' => '',
  5821. 5821   'tab_root' => 'admin/user/user',
  5822. 5822   'title' => 'Users',
  5823. 5823   'title_callback' => 't',
  5824. 5824   'title_arguments' => '',
  5825. 5825   'type' => '6',
  5826. 5826   'block_callback' => '',
  5827. 5827   'description' => 'List, add, and edit users.',
  5828. 5828   'position' => '',
  5829. 5829   'weight' => '0',
  5830. 5830   'file' => 'modules/user/user.admin.inc',
  5831. 5831 ))
  5832. 5832 ->values(array(
  5833. 5833   'path' => 'admin/user/user/create',
  5834. 5834   'load_functions' => '',
  5835. 5835   'to_arg_functions' => '',
  5836. 5836   'access_callback' => 'user_access',
  5837. 5837   'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
  5838. 5838   'page_callback' => 'user_admin',
  5839. 5839   'page_arguments' => 'a:1:{i:0;s:6:"create";}',
  5840. 5840   'fit' => '15',
  5841. 5841   'number_parts' => '4',
  5842. 5842   'tab_parent' => 'admin/user/user',
  5843. 5843   'tab_root' => 'admin/user/user',
  5844. 5844   'title' => 'Add user',
  5845. 5845   'title_callback' => 't',
  5846. 5846   'title_arguments' => '',
  5847. 5847   'type' => '128',
  5848. 5848   'block_callback' => '',
  5849. 5849   'description' => '',
  5850. 5850   'position' => '',
  5851. 5851   'weight' => '0',
  5852. 5852   'file' => 'modules/user/user.admin.inc',
  5853. 5853 ))
  5854. 5854 ->values(array(
  5855. 5855   'path' => 'admin/user/user/list',
  5856. 5856   'load_functions' => '',
  5857. 5857   'to_arg_functions' => '',
  5858. 5858   'access_callback' => 'user_access',
  5859. 5859   'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
  5860. 5860   'page_callback' => 'user_admin',
  5861. 5861   'page_arguments' => 'a:1:{i:0;s:4:"list";}',
  5862. 5862   'fit' => '15',
  5863. 5863   'number_parts' => '4',
  5864. 5864   'tab_parent' => 'admin/user/user',
  5865. 5865   'tab_root' => 'admin/user/user',
  5866. 5866   'title' => 'List',
  5867. 5867   'title_callback' => 't',
  5868. 5868   'title_arguments' => '',
  5869. 5869   'type' => '136',
  5870. 5870   'block_callback' => '',
  5871. 5871   'description' => '',
  5872. 5872   'position' => '',
  5873. 5873   'weight' => '-10',
  5874. 5874   'file' => 'modules/user/user.admin.inc',
  5875. 5875 ))
  5876. 5876 ->values(array(
  5877. 5877   'path' => 'batch',
  5878. 5878   'load_functions' => '',
  5879. 5879   'to_arg_functions' => '',
  5880. 5880   'access_callback' => '1',
  5881. 5881   'access_arguments' => 'a:0:{}',
  5882. 5882   'page_callback' => 'system_batch_page',
  5883. 5883   'page_arguments' => 'a:0:{}',
  5884. 5884   'fit' => '1',
  5885. 5885   'number_parts' => '1',
  5886. 5886   'tab_parent' => '',
  5887. 5887   'tab_root' => 'batch',
  5888. 5888   'title' => '',
  5889. 5889   'title_callback' => 't',
  5890. 5890   'title_arguments' => '',
  5891. 5891   'type' => '4',
  5892. 5892   'block_callback' => '',
  5893. 5893   'description' => '',
  5894. 5894   'position' => '',
  5895. 5895   'weight' => '0',
  5896. 5896   'file' => 'modules/system/system.admin.inc',
  5897. 5897 ))
  5898. 5898 ->values(array(
  5899. 5899   'path' => 'filter/tips',
  5900. 5900   'load_functions' => '',
  5901. 5901   'to_arg_functions' => '',
  5902. 5902   'access_callback' => '1',
  5903. 5903   'access_arguments' => 'a:0:{}',
  5904. 5904   'page_callback' => 'filter_tips_long',
  5905. 5905   'page_arguments' => 'a:0:{}',
  5906. 5906   'fit' => '3',
  5907. 5907   'number_parts' => '2',
  5908. 5908   'tab_parent' => '',
  5909. 5909   'tab_root' => 'filter/tips',
  5910. 5910   'title' => 'Compose tips',
  5911. 5911   'title_callback' => 't',
  5912. 5912   'title_arguments' => '',
  5913. 5913   'type' => '20',
  5914. 5914   'block_callback' => '',
  5915. 5915   'description' => '',
  5916. 5916   'position' => '',
  5917. 5917   'weight' => '0',
  5918. 5918   'file' => 'modules/filter/filter.pages.inc',
  5919. 5919 ))
  5920. 5920 ->values(array(
  5921. 5921   'path' => 'logout',
  5922. 5922   'load_functions' => '',
  5923. 5923   'to_arg_functions' => '',
  5924. 5924   'access_callback' => 'user_is_logged_in',
  5925. 5925   'access_arguments' => 'a:0:{}',
  5926. 5926   'page_callback' => 'user_logout',
  5927. 5927   'page_arguments' => 'a:0:{}',
  5928. 5928   'fit' => '1',
  5929. 5929   'number_parts' => '1',
  5930. 5930   'tab_parent' => '',
  5931. 5931   'tab_root' => 'logout',
  5932. 5932   'title' => 'Log out',
  5933. 5933   'title_callback' => 't',
  5934. 5934   'title_arguments' => '',
  5935. 5935   'type' => '6',
  5936. 5936   'block_callback' => '',
  5937. 5937   'description' => '',
  5938. 5938   'position' => '',
  5939. 5939   'weight' => '10',
  5940. 5940   'file' => 'modules/user/user.pages.inc',
  5941. 5941 ))
  5942. 5942 ->values(array(
  5943. 5943   'path' => 'node',
  5944. 5944   'load_functions' => '',
  5945. 5945   'to_arg_functions' => '',
  5946. 5946   'access_callback' => 'user_access',
  5947. 5947   'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
  5948. 5948   'page_callback' => 'node_page_default',
  5949. 5949   'page_arguments' => 'a:0:{}',
  5950. 5950   'fit' => '1',
  5951. 5951   'number_parts' => '1',
  5952. 5952   'tab_parent' => '',
  5953. 5953   'tab_root' => 'node',
  5954. 5954   'title' => 'Content',
  5955. 5955   'title_callback' => 't',
  5956. 5956   'title_arguments' => '',
  5957. 5957   'type' => '4',
  5958. 5958   'block_callback' => '',
  5959. 5959   'description' => '',
  5960. 5960   'position' => '',
  5961. 5961   'weight' => '0',
  5962. 5962   'file' => '',
  5963. 5963 ))
  5964. 5964 ->values(array(
  5965. 5965   'path' => 'node/%',
  5966. 5966   'load_functions' => 'a:1:{i:1;s:9:"node_load";}',
  5967. 5967   'to_arg_functions' => '',
  5968. 5968   'access_callback' => 'node_access',
  5969. 5969   'access_arguments' => 'a:2:{i:0;s:4:"view";i:1;i:1;}',
  5970. 5970   'page_callback' => 'node_page_view',
  5971. 5971   'page_arguments' => 'a:1:{i:0;i:1;}',
  5972. 5972   'fit' => '2',
  5973. 5973   'number_parts' => '2',
  5974. 5974   'tab_parent' => '',
  5975. 5975   'tab_root' => 'node/%',
  5976. 5976   'title' => '',
  5977. 5977   'title_callback' => 'node_page_title',
  5978. 5978   'title_arguments' => 'a:1:{i:0;i:1;}',
  5979. 5979   'type' => '4',
  5980. 5980   'block_callback' => '',
  5981. 5981   'description' => '',
  5982. 5982   'position' => '',
  5983. 5983   'weight' => '0',
  5984. 5984   'file' => '',
  5985. 5985 ))
  5986. 5986 ->values(array(
  5987. 5987   'path' => 'node/%/delete',
  5988. 5988   'load_functions' => 'a:1:{i:1;s:9:"node_load";}',
  5989. 5989   'to_arg_functions' => '',
  5990. 5990   'access_callback' => 'node_access',
  5991. 5991   'access_arguments' => 'a:2:{i:0;s:6:"delete";i:1;i:1;}',
  5992. 5992   'page_callback' => 'drupal_get_form',
  5993. 5993   'page_arguments' => 'a:2:{i:0;s:19:"node_delete_confirm";i:1;i:1;}',
  5994. 5994   'fit' => '5',
  5995. 5995   'number_parts' => '3',
  5996. 5996   'tab_parent' => '',
  5997. 5997   'tab_root' => 'node/%/delete',
  5998. 5998   'title' => 'Delete',
  5999. 5999   'title_callback' => 't',
  6000. 6000   'title_arguments' => '',
  6001. 6001   'type' => '4',
  6002. 6002   'block_callback' => '',
  6003. 6003   'description' => '',
  6004. 6004   'position' => '',
  6005. 6005   'weight' => '1',
  6006. 6006   'file' => 'modules/node/node.pages.inc',
  6007. 6007 ))
  6008. 6008 ->values(array(
  6009. 6009   'path' => 'node/%/edit',
  6010. 6010   'load_functions' => 'a:1:{i:1;s:9:"node_load";}',
  6011. 6011   'to_arg_functions' => '',
  6012. 6012   'access_callback' => 'node_access',
  6013. 6013   'access_arguments' => 'a:2:{i:0;s:6:"update";i:1;i:1;}',
  6014. 6014   'page_callback' => 'node_page_edit',
  6015. 6015   'page_arguments' => 'a:1:{i:0;i:1;}',
  6016. 6016   'fit' => '5',
  6017. 6017   'number_parts' => '3',
  6018. 6018   'tab_parent' => 'node/%',
  6019. 6019   'tab_root' => 'node/%',
  6020. 6020   'title' => 'Edit',
  6021. 6021   'title_callback' => 't',
  6022. 6022   'title_arguments' => '',
  6023. 6023   'type' => '128',
  6024. 6024   'block_callback' => '',
  6025. 6025   'description' => '',
  6026. 6026   'position' => '',
  6027. 6027   'weight' => '1',
  6028. 6028   'file' => 'modules/node/node.pages.inc',
  6029. 6029 ))
  6030. 6030 ->values(array(
  6031. 6031   'path' => 'node/%/revisions',
  6032. 6032   'load_functions' => 'a:1:{i:1;s:9:"node_load";}',
  6033. 6033   'to_arg_functions' => '',
  6034. 6034   'access_callback' => '_node_revision_access',
  6035. 6035   'access_arguments' => 'a:1:{i:0;i:1;}',
  6036. 6036   'page_callback' => 'node_revision_overview',
  6037. 6037   'page_arguments' => 'a:1:{i:0;i:1;}',
  6038. 6038   'fit' => '5',
  6039. 6039   'number_parts' => '3',
  6040. 6040   'tab_parent' => 'node/%',
  6041. 6041   'tab_root' => 'node/%',
  6042. 6042   'title' => 'Revisions',
  6043. 6043   'title_callback' => 't',
  6044. 6044   'title_arguments' => '',
  6045. 6045   'type' => '128',
  6046. 6046   'block_callback' => '',
  6047. 6047   'description' => '',
  6048. 6048   'position' => '',
  6049. 6049   'weight' => '2',
  6050. 6050   'file' => 'modules/node/node.pages.inc',
  6051. 6051 ))
  6052. 6052 ->values(array(
  6053. 6053   'path' => 'node/%/revisions/%/delete',
  6054. 6054   'load_functions' => 'a:2:{i:1;a:1:{s:9:"node_load";a:1:{i:0;i:3;}}i:3;N;}',
  6055. 6055   'to_arg_functions' => '',
  6056. 6056   'access_callback' => '_node_revision_access',
  6057. 6057   'access_arguments' => 'a:2:{i:0;i:1;i:1;s:6:"delete";}',
  6058. 6058   'page_callback' => 'drupal_get_form',
  6059. 6059   'page_arguments' => 'a:2:{i:0;s:28:"node_revision_delete_confirm";i:1;i:1;}',
  6060. 6060   'fit' => '21',
  6061. 6061   'number_parts' => '5',
  6062. 6062   'tab_parent' => '',
  6063. 6063   'tab_root' => 'node/%/revisions/%/delete',
  6064. 6064   'title' => 'Delete earlier revision',
  6065. 6065   'title_callback' => 't',
  6066. 6066   'title_arguments' => '',
  6067. 6067   'type' => '4',
  6068. 6068   'block_callback' => '',
  6069. 6069   'description' => '',
  6070. 6070   'position' => '',
  6071. 6071   'weight' => '0',
  6072. 6072   'file' => 'modules/node/node.pages.inc',
  6073. 6073 ))
  6074. 6074 ->values(array(
  6075. 6075   'path' => 'node/%/revisions/%/revert',
  6076. 6076   'load_functions' => 'a:2:{i:1;a:1:{s:9:"node_load";a:1:{i:0;i:3;}}i:3;N;}',
  6077. 6077   'to_arg_functions' => '',
  6078. 6078   'access_callback' => '_node_revision_access',
  6079. 6079   'access_arguments' => 'a:2:{i:0;i:1;i:1;s:6:"update";}',
  6080. 6080   'page_callback' => 'drupal_get_form',
  6081. 6081   'page_arguments' => 'a:2:{i:0;s:28:"node_revision_revert_confirm";i:1;i:1;}',
  6082. 6082   'fit' => '21',
  6083. 6083   'number_parts' => '5',
  6084. 6084   'tab_parent' => '',
  6085. 6085   'tab_root' => 'node/%/revisions/%/revert',
  6086. 6086   'title' => 'Revert to earlier revision',
  6087. 6087   'title_callback' => 't',
  6088. 6088   'title_arguments' => '',
  6089. 6089   'type' => '4',
  6090. 6090   'block_callback' => '',
  6091. 6091   'description' => '',
  6092. 6092   'position' => '',
  6093. 6093   'weight' => '0',
  6094. 6094   'file' => 'modules/node/node.pages.inc',
  6095. 6095 ))
  6096. 6096 ->values(array(
  6097. 6097   'path' => 'node/%/revisions/%/view',
  6098. 6098   'load_functions' => 'a:2:{i:1;a:1:{s:9:"node_load";a:1:{i:0;i:3;}}i:3;N;}',
  6099. 6099   'to_arg_functions' => '',
  6100. 6100   'access_callback' => '_node_revision_access',
  6101. 6101   'access_arguments' => 'a:1:{i:0;i:1;}',
  6102. 6102   'page_callback' => 'node_show',
  6103. 6103   'page_arguments' => 'a:3:{i:0;i:1;i:1;N;i:2;b:1;}',
  6104. 6104   'fit' => '21',
  6105. 6105   'number_parts' => '5',
  6106. 6106   'tab_parent' => '',
  6107. 6107   'tab_root' => 'node/%/revisions/%/view',
  6108. 6108   'title' => 'Revisions',
  6109. 6109   'title_callback' => 't',
  6110. 6110   'title_arguments' => '',
  6111. 6111   'type' => '4',
  6112. 6112   'block_callback' => '',
  6113. 6113   'description' => '',
  6114. 6114   'position' => '',
  6115. 6115   'weight' => '0',
  6116. 6116   'file' => '',
  6117. 6117 ))
  6118. 6118 ->values(array(
  6119. 6119   'path' => 'node/%/view',
  6120. 6120   'load_functions' => 'a:1:{i:1;s:9:"node_load";}',
  6121. 6121   'to_arg_functions' => '',
  6122. 6122   'access_callback' => 'node_access',
  6123. 6123   'access_arguments' => 'a:2:{i:0;s:4:"view";i:1;i:1;}',
  6124. 6124   'page_callback' => 'node_page_view',
  6125. 6125   'page_arguments' => 'a:1:{i:0;i:1;}',
  6126. 6126   'fit' => '5',
  6127. 6127   'number_parts' => '3',
  6128. 6128   'tab_parent' => 'node/%',
  6129. 6129   'tab_root' => 'node/%',
  6130. 6130   'title' => 'View',
  6131. 6131   'title_callback' => 't',
  6132. 6132   'title_arguments' => '',
  6133. 6133   'type' => '136',
  6134. 6134   'block_callback' => '',
  6135. 6135   'description' => '',
  6136. 6136   'position' => '',
  6137. 6137   'weight' => '-10',
  6138. 6138   'file' => '',
  6139. 6139 ))
  6140. 6140 ->values(array(
  6141. 6141   'path' => 'node/add',
  6142. 6142   'load_functions' => '',
  6143. 6143   'to_arg_functions' => '',
  6144. 6144   'access_callback' => '_node_add_access',
  6145. 6145   'access_arguments' => 'a:0:{}',
  6146. 6146   'page_callback' => 'node_add_page',
  6147. 6147   'page_arguments' => 'a:0:{}',
  6148. 6148   'fit' => '3',
  6149. 6149   'number_parts' => '2',
  6150. 6150   'tab_parent' => '',
  6151. 6151   'tab_root' => 'node/add',
  6152. 6152   'title' => 'Create content',
  6153. 6153   'title_callback' => 't',
  6154. 6154   'title_arguments' => '',
  6155. 6155   'type' => '6',
  6156. 6156   'block_callback' => '',
  6157. 6157   'description' => '',
  6158. 6158   'position' => '',
  6159. 6159   'weight' => '1',
  6160. 6160   'file' => 'modules/node/node.pages.inc',
  6161. 6161 ))
  6162. 6162 ->values(array(
  6163. 6163   'path' => 'node/add/page',
  6164. 6164   'load_functions' => '',
  6165. 6165   'to_arg_functions' => '',
  6166. 6166   'access_callback' => 'node_access',
  6167. 6167   'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:4:"page";}',
  6168. 6168   'page_callback' => 'node_add',
  6169. 6169   'page_arguments' => 'a:1:{i:0;i:2;}',
  6170. 6170   'fit' => '7',
  6171. 6171   'number_parts' => '3',
  6172. 6172   'tab_parent' => '',
  6173. 6173   'tab_root' => 'node/add/page',
  6174. 6174   'title' => 'Page',
  6175. 6175   'title_callback' => 'check_plain',
  6176. 6176   'title_arguments' => '',
  6177. 6177   'type' => '6',
  6178. 6178   'block_callback' => '',
  6179. 6179   'description' => "A <em>page</em>, similar in form to a <em>story</em>, is a simple method for creating and displaying information that rarely changes, such as an \"About us\" section of a website. By default, a <em>page</em> entry does not allow visitor comments and is not featured on the site's initial home page.",
  6180. 6180   'position' => '',
  6181. 6181   'weight' => '0',
  6182. 6182   'file' => 'modules/node/node.pages.inc',
  6183. 6183 ))
  6184. 6184 ->values(array(
  6185. 6185   'path' => 'node/add/story',
  6186. 6186   'load_functions' => '',
  6187. 6187   'to_arg_functions' => '',
  6188. 6188   'access_callback' => 'node_access',
  6189. 6189   'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:5:"story";}',
  6190. 6190   'page_callback' => 'node_add',
  6191. 6191   'page_arguments' => 'a:1:{i:0;i:2;}',
  6192. 6192   'fit' => '7',
  6193. 6193   'number_parts' => '3',
  6194. 6194   'tab_parent' => '',
  6195. 6195   'tab_root' => 'node/add/story',
  6196. 6196   'title' => 'Story',
  6197. 6197   'title_callback' => 'check_plain',
  6198. 6198   'title_arguments' => '',
  6199. 6199   'type' => '6',
  6200. 6200   'block_callback' => '',
  6201. 6201   'description' => "A <em>story</em>, similar in form to a <em>page</em>, is ideal for creating and displaying content that informs or engages website visitors. Press releases, site announcements, and informal blog-like entries may all be created with a <em>story</em> entry. By default, a <em>story</em> entry is automatically featured on the site's initial home page, and provides the ability to post comments.",
  6202. 6202   'position' => '',
  6203. 6203   'weight' => '0',
  6204. 6204   'file' => 'modules/node/node.pages.inc',
  6205. 6205 ))
  6206. 6206 ->values(array(
  6207. 6207   'path' => 'rss.xml',
  6208. 6208   'load_functions' => '',
  6209. 6209   'to_arg_functions' => '',
  6210. 6210   'access_callback' => 'user_access',
  6211. 6211   'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
  6212. 6212   'page_callback' => 'node_feed',
  6213. 6213   'page_arguments' => 'a:0:{}',
  6214. 6214   'fit' => '1',
  6215. 6215   'number_parts' => '1',
  6216. 6216   'tab_parent' => '',
  6217. 6217   'tab_root' => 'rss.xml',
  6218. 6218   'title' => 'RSS feed',
  6219. 6219   'title_callback' => 't',
  6220. 6220   'title_arguments' => '',
  6221. 6221   'type' => '4',
  6222. 6222   'block_callback' => '',
  6223. 6223   'description' => '',
  6224. 6224   'position' => '',
  6225. 6225   'weight' => '0',
  6226. 6226   'file' => '',
  6227. 6227 ))
  6228. 6228 ->values(array(
  6229. 6229   'path' => 'system/files',
  6230. 6230   'load_functions' => '',
  6231. 6231   'to_arg_functions' => '',
  6232. 6232   'access_callback' => '1',
  6233. 6233   'access_arguments' => 'a:0:{}',
  6234. 6234   'page_callback' => 'file_download',
  6235. 6235   'page_arguments' => 'a:0:{}',
  6236. 6236   'fit' => '3',
  6237. 6237   'number_parts' => '2',
  6238. 6238   'tab_parent' => '',
  6239. 6239   'tab_root' => 'system/files',
  6240. 6240   'title' => 'File download',
  6241. 6241   'title_callback' => 't',
  6242. 6242   'title_arguments' => '',
  6243. 6243   'type' => '4',
  6244. 6244   'block_callback' => '',
  6245. 6245   'description' => '',
  6246. 6246   'position' => '',
  6247. 6247   'weight' => '0',
  6248. 6248   'file' => '',
  6249. 6249 ))
  6250. 6250 ->values(array(
  6251. 6251   'path' => 'user',
  6252. 6252   'load_functions' => '',
  6253. 6253   'to_arg_functions' => '',
  6254. 6254   'access_callback' => '1',
  6255. 6255   'access_arguments' => 'a:0:{}',
  6256. 6256   'page_callback' => 'user_page',
  6257. 6257   'page_arguments' => 'a:0:{}',
  6258. 6258   'fit' => '1',
  6259. 6259   'number_parts' => '1',
  6260. 6260   'tab_parent' => '',
  6261. 6261   'tab_root' => 'user',
  6262. 6262   'title' => 'User account',
  6263. 6263   'title_callback' => 't',
  6264. 6264   'title_arguments' => '',
  6265. 6265   'type' => '4',
  6266. 6266   'block_callback' => '',
  6267. 6267   'description' => '',
  6268. 6268   'position' => '',
  6269. 6269   'weight' => '0',
  6270. 6270   'file' => 'modules/user/user.pages.inc',
  6271. 6271 ))
  6272. 6272 ->values(array(
  6273. 6273   'path' => 'user/%',
  6274. 6274   'load_functions' => 'a:1:{i:1;s:22:"user_uid_optional_load";}',
  6275. 6275   'to_arg_functions' => 'a:1:{i:1;s:24:"user_uid_optional_to_arg";}',
  6276. 6276   'access_callback' => 'user_view_access',
  6277. 6277   'access_arguments' => 'a:1:{i:0;i:1;}',
  6278. 6278   'page_callback' => 'user_view',
  6279. 6279   'page_arguments' => 'a:1:{i:0;i:1;}',
  6280. 6280   'fit' => '2',
  6281. 6281   'number_parts' => '2',
  6282. 6282   'tab_parent' => '',
  6283. 6283   'tab_root' => 'user/%',
  6284. 6284   'title' => 'My account',
  6285. 6285   'title_callback' => 'user_page_title',
  6286. 6286   'title_arguments' => 'a:1:{i:0;i:1;}',
  6287. 6287   'type' => '6',
  6288. 6288   'block_callback' => '',
  6289. 6289   'description' => '',
  6290. 6290   'position' => '',
  6291. 6291   'weight' => '0',
  6292. 6292   'file' => 'modules/user/user.pages.inc',
  6293. 6293 ))
  6294. 6294 ->values(array(
  6295. 6295   'path' => 'user/%/delete',
  6296. 6296   'load_functions' => 'a:1:{i:1;s:9:"user_load";}',
  6297. 6297   'to_arg_functions' => '',
  6298. 6298   'access_callback' => 'user_access',
  6299. 6299   'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
  6300. 6300   'page_callback' => 'drupal_get_form',
  6301. 6301   'page_arguments' => 'a:2:{i:0;s:19:"user_confirm_delete";i:1;i:1;}',
  6302. 6302   'fit' => '5',
  6303. 6303   'number_parts' => '3',
  6304. 6304   'tab_parent' => '',
  6305. 6305   'tab_root' => 'user/%/delete',
  6306. 6306   'title' => 'Delete',
  6307. 6307   'title_callback' => 't',
  6308. 6308   'title_arguments' => '',
  6309. 6309   'type' => '4',
  6310. 6310   'block_callback' => '',
  6311. 6311   'description' => '',
  6312. 6312   'position' => '',
  6313. 6313   'weight' => '0',
  6314. 6314   'file' => 'modules/user/user.pages.inc',
  6315. 6315 ))
  6316. 6316 ->values(array(
  6317. 6317   'path' => 'user/%/edit',
  6318. 6318   'load_functions' => 'a:1:{i:1;a:1:{s:18:"user_category_load";a:2:{i:0;s:4:"%map";i:1;s:6:"%index";}}}',
  6319. 6319   'to_arg_functions' => '',
  6320. 6320   'access_callback' => 'user_edit_access',
  6321. 6321   'access_arguments' => 'a:1:{i:0;i:1;}',
  6322. 6322   'page_callback' => 'user_edit',
  6323. 6323   'page_arguments' => 'a:1:{i:0;i:1;}',
  6324. 6324   'fit' => '5',
  6325. 6325   'number_parts' => '3',
  6326. 6326   'tab_parent' => 'user/%',
  6327. 6327   'tab_root' => 'user/%',
  6328. 6328   'title' => 'Edit',
  6329. 6329   'title_callback' => 't',
  6330. 6330   'title_arguments' => '',
  6331. 6331   'type' => '128',
  6332. 6332   'block_callback' => '',
  6333. 6333   'description' => '',
  6334. 6334   'position' => '',
  6335. 6335   'weight' => '0',
  6336. 6336   'file' => 'modules/user/user.pages.inc',
  6337. 6337 ))
  6338. 6338 ->values(array(
  6339. 6339   'path' => 'user/%/edit/account',
  6340. 6340   'load_functions' => 'a:1:{i:1;a:1:{s:18:"user_category_load";a:2:{i:0;s:4:"%map";i:1;s:6:"%index";}}}',
  6341. 6341   'to_arg_functions' => '',
  6342. 6342   'access_callback' => 'user_edit_access',
  6343. 6343   'access_arguments' => 'a:1:{i:0;i:1;}',
  6344. 6344   'page_callback' => 'user_edit',
  6345. 6345   'page_arguments' => 'a:1:{i:0;i:1;}',
  6346. 6346   'fit' => '11',
  6347. 6347   'number_parts' => '4',
  6348. 6348   'tab_parent' => 'user/%/edit',
  6349. 6349   'tab_root' => 'user/%',
  6350. 6350   'title' => 'Account',
  6351. 6351   'title_callback' => 't',
  6352. 6352   'title_arguments' => '',
  6353. 6353   'type' => '136',
  6354. 6354   'block_callback' => '',
  6355. 6355   'description' => '',
  6356. 6356   'position' => '',
  6357. 6357   'weight' => '0',
  6358. 6358   'file' => 'modules/user/user.pages.inc',
  6359. 6359 ))
  6360. 6360 ->values(array(
  6361. 6361   'path' => 'user/%/view',
  6362. 6362   'load_functions' => 'a:1:{i:1;s:9:"user_load";}',
  6363. 6363   'to_arg_functions' => '',
  6364. 6364   'access_callback' => 'user_view_access',
  6365. 6365   'access_arguments' => 'a:1:{i:0;i:1;}',
  6366. 6366   'page_callback' => 'user_view',
  6367. 6367   'page_arguments' => 'a:1:{i:0;i:1;}',
  6368. 6368   'fit' => '5',
  6369. 6369   'number_parts' => '3',
  6370. 6370   'tab_parent' => 'user/%',
  6371. 6371   'tab_root' => 'user/%',
  6372. 6372   'title' => 'View',
  6373. 6373   'title_callback' => 't',
  6374. 6374   'title_arguments' => '',
  6375. 6375   'type' => '136',
  6376. 6376   'block_callback' => '',
  6377. 6377   'description' => '',
  6378. 6378   'position' => '',
  6379. 6379   'weight' => '-10',
  6380. 6380   'file' => 'modules/user/user.pages.inc',
  6381. 6381 ))
  6382. 6382 ->values(array(
  6383. 6383   'path' => 'user/autocomplete',
  6384. 6384   'load_functions' => '',
  6385. 6385   'to_arg_functions' => '',
  6386. 6386   'access_callback' => 'user_access',
  6387. 6387   'access_arguments' => 'a:1:{i:0;s:20:"access user profiles";}',
  6388. 6388   'page_callback' => 'user_autocomplete',
  6389. 6389   'page_arguments' => 'a:0:{}',
  6390. 6390   'fit' => '3',
  6391. 6391   'number_parts' => '2',
  6392. 6392   'tab_parent' => '',
  6393. 6393   'tab_root' => 'user/autocomplete',
  6394. 6394   'title' => 'User autocomplete',
  6395. 6395   'title_callback' => 't',
  6396. 6396   'title_arguments' => '',
  6397. 6397   'type' => '4',
  6398. 6398   'block_callback' => '',
  6399. 6399   'description' => '',
  6400. 6400   'position' => '',
  6401. 6401   'weight' => '0',
  6402. 6402   'file' => 'modules/user/user.pages.inc',
  6403. 6403 ))
  6404. 6404 ->values(array(
  6405. 6405   'path' => 'user/login',
  6406. 6406   'load_functions' => '',
  6407. 6407   'to_arg_functions' => '',
  6408. 6408   'access_callback' => 'user_is_anonymous',
  6409. 6409   'access_arguments' => 'a:0:{}',
  6410. 6410   'page_callback' => 'user_page',
  6411. 6411   'page_arguments' => 'a:0:{}',
  6412. 6412   'fit' => '3',
  6413. 6413   'number_parts' => '2',
  6414. 6414   'tab_parent' => 'user',
  6415. 6415   'tab_root' => 'user',
  6416. 6416   'title' => 'Log in',
  6417. 6417   'title_callback' => 't',
  6418. 6418   'title_arguments' => '',
  6419. 6419   'type' => '136',
  6420. 6420   'block_callback' => '',
  6421. 6421   'description' => '',
  6422. 6422   'position' => '',
  6423. 6423   'weight' => '0',
  6424. 6424   'file' => 'modules/user/user.pages.inc',
  6425. 6425 ))
  6426. 6426 ->values(array(
  6427. 6427   'path' => 'user/password',
  6428. 6428   'load_functions' => '',
  6429. 6429   'to_arg_functions' => '',
  6430. 6430   'access_callback' => 'user_is_anonymous',
  6431. 6431   'access_arguments' => 'a:0:{}',
  6432. 6432   'page_callback' => 'drupal_get_form',
  6433. 6433   'page_arguments' => 'a:1:{i:0;s:9:"user_pass";}',
  6434. 6434   'fit' => '3',
  6435. 6435   'number_parts' => '2',
  6436. 6436   'tab_parent' => 'user',
  6437. 6437   'tab_root' => 'user',
  6438. 6438   'title' => 'Request new password',
  6439. 6439   'title_callback' => 't',
  6440. 6440   'title_arguments' => '',
  6441. 6441   'type' => '128',
  6442. 6442   'block_callback' => '',
  6443. 6443   'description' => '',
  6444. 6444   'position' => '',
  6445. 6445   'weight' => '0',
  6446. 6446   'file' => 'modules/user/user.pages.inc',
  6447. 6447 ))
  6448. 6448 ->values(array(
  6449. 6449   'path' => 'user/register',
  6450. 6450   'load_functions' => '',
  6451. 6451   'to_arg_functions' => '',
  6452. 6452   'access_callback' => 'user_register_access',
  6453. 6453   'access_arguments' => 'a:0:{}',
  6454. 6454   'page_callback' => 'drupal_get_form',
  6455. 6455   'page_arguments' => 'a:1:{i:0;s:13:"user_register";}',
  6456. 6456   'fit' => '3',
  6457. 6457   'number_parts' => '2',
  6458. 6458   'tab_parent' => 'user',
  6459. 6459   'tab_root' => 'user',
  6460. 6460   'title' => 'Create new account',
  6461. 6461   'title_callback' => 't',
  6462. 6462   'title_arguments' => '',
  6463. 6463   'type' => '128',
  6464. 6464   'block_callback' => '',
  6465. 6465   'description' => '',
  6466. 6466   'position' => '',
  6467. 6467   'weight' => '0',
  6468. 6468   'file' => 'modules/user/user.pages.inc',
  6469. 6469 ))
  6470. 6470 ->values(array(
  6471. 6471   'path' => 'user/reset/%/%/%',
  6472. 6472   'load_functions' => 'a:3:{i:2;N;i:3;N;i:4;N;}',
  6473. 6473   'to_arg_functions' => '',
  6474. 6474   'access_callback' => '1',
  6475. 6475   'access_arguments' => 'a:0:{}',
  6476. 6476   'page_callback' => 'drupal_get_form',
  6477. 6477   'page_arguments' => 'a:4:{i:0;s:15:"user_pass_reset";i:1;i:2;i:2;i:3;i:3;i:4;}',
  6478. 6478   'fit' => '24',
  6479. 6479   'number_parts' => '5',
  6480. 6480   'tab_parent' => '',
  6481. 6481   'tab_root' => 'user/reset/%/%/%',
  6482. 6482   'title' => 'Reset password',
  6483. 6483   'title_callback' => 't',
  6484. 6484   'title_arguments' => '',
  6485. 6485   'type' => '4',
  6486. 6486   'block_callback' => '',
  6487. 6487   'description' => '',
  6488. 6488   'position' => '',
  6489. 6489   'weight' => '0',
  6490. 6490   'file' => 'modules/user/user.pages.inc',
  6491. 6491 ))
  6492. 6492 ->execute();
  6493. 6493 
  6494. 6494 db_create_table('node', array(
  6495. 6495   'fields' => array(
  6496. 6496     'nid' => array(
  6497. 6497       'type' => 'serial',
  6498. 6498       'unsigned' => TRUE,
  6499. 6499       'not null' => TRUE,
  6500. 6500     ),
  6501. 6501     'vid' => array(
  6502. 6502       'type' => 'int',
  6503. 6503       'unsigned' => TRUE,
  6504. 6504       'not null' => TRUE,
  6505. 6505       'default' => 0,
  6506. 6506     ),
  6507. 6507     'type' => array(
  6508. 6508       'type' => 'varchar',
  6509. 6509       'length' => 32,
  6510. 6510       'not null' => TRUE,
  6511. 6511       'default' => '',
  6512. 6512     ),
  6513. 6513     'language' => array(
  6514. 6514       'type' => 'varchar',
  6515. 6515       'length' => 12,
  6516. 6516       'not null' => TRUE,
  6517. 6517       'default' => '',
  6518. 6518     ),
  6519. 6519     'title' => array(
  6520. 6520       'type' => 'varchar',
  6521. 6521       'length' => 255,
  6522. 6522       'not null' => TRUE,
  6523. 6523       'default' => '',
  6524. 6524     ),
  6525. 6525     'uid' => array(
  6526. 6526       'type' => 'int',
  6527. 6527       'not null' => TRUE,
  6528. 6528       'default' => 0,
  6529. 6529     ),
  6530. 6530     'status' => array(
  6531. 6531       'type' => 'int',
  6532. 6532       'not null' => TRUE,
  6533. 6533       'default' => 1,
  6534. 6534     ),
  6535. 6535     'created' => array(
  6536. 6536       'type' => 'int',
  6537. 6537       'not null' => TRUE,
  6538. 6538       'default' => 0,
  6539. 6539     ),
  6540. 6540     'changed' => array(
  6541. 6541       'type' => 'int',
  6542. 6542       'not null' => TRUE,
  6543. 6543       'default' => 0,
  6544. 6544     ),
  6545. 6545     'comment' => array(
  6546. 6546       'type' => 'int',
  6547. 6547       'not null' => TRUE,
  6548. 6548       'default' => 0,
  6549. 6549     ),
  6550. 6550     'promote' => array(
  6551. 6551       'type' => 'int',
  6552. 6552       'not null' => TRUE,
  6553. 6553       'default' => 0,
  6554. 6554     ),
  6555. 6555     'moderate' => array(
  6556. 6556       'type' => 'int',
  6557. 6557       'not null' => TRUE,
  6558. 6558       'default' => 0,
  6559. 6559     ),
  6560. 6560     'sticky' => array(
  6561. 6561       'type' => 'int',
  6562. 6562       'not null' => TRUE,
  6563. 6563       'default' => 0,
  6564. 6564     ),
  6565. 6565     'tnid' => array(
  6566. 6566       'type' => 'int',
  6567. 6567       'unsigned' => TRUE,
  6568. 6568       'not null' => TRUE,
  6569. 6569       'default' => 0,
  6570. 6570     ),
  6571. 6571     'translate' => array(
  6572. 6572       'type' => 'int',
  6573. 6573       'not null' => TRUE,
  6574. 6574       'default' => 0,
  6575. 6575     ),
  6576. 6576   ),
  6577. 6577   'indexes' => array(
  6578. 6578     'node_changed' => array(
  6579. 6579       'changed',
  6580. 6580     ),
  6581. 6581     'node_created' => array(
  6582. 6582       'created',
  6583. 6583     ),
  6584. 6584     'node_moderate' => array(
  6585. 6585       'moderate',
  6586. 6586     ),
  6587. 6587     'node_promote_status' => array(
  6588. 6588       'promote',
  6589. 6589       'status',
  6590. 6590     ),
  6591. 6591     'node_status_type' => array(
  6592. 6592       'status',
  6593. 6593       'type',
  6594. 6594       'nid',
  6595. 6595     ),
  6596. 6596     'node_title_type' => array(
  6597. 6597       'title',
  6598. 6598       array(
  6599. 6599         'type',
  6600. 6600         4,
  6601. 6601       ),
  6602. 6602     ),
  6603. 6603     'node_type' => array(
  6604. 6604       array(
  6605. 6605         'type',
  6606. 6606         4,
  6607. 6607       ),
  6608. 6608     ),
  6609. 6609     'uid' => array(
  6610. 6610       'uid',
  6611. 6611     ),
  6612. 6612     'tnid' => array(
  6613. 6613       'tnid',
  6614. 6614     ),
  6615. 6615     'translate' => array(
  6616. 6616       'translate',
  6617. 6617     ),
  6618. 6618   ),
  6619. 6619   'unique keys' => array(
  6620. 6620     'vid' => array(
  6621. 6621       'vid',
  6622. 6622     ),
  6623. 6623   ),
  6624. 6624   'primary key' => array(
  6625. 6625     'nid',
  6626. 6626   ),
  6627. 6627   'module' => 'node',
  6628. 6628   'name' => 'node',
  6629. 6629 ));
  6630. 6630 
  6631. 6631 db_create_table('node_access', array(
  6632. 6632   'fields' => array(
  6633. 6633     'nid' => array(
  6634. 6634       'type' => 'int',
  6635. 6635       'unsigned' => TRUE,
  6636. 6636       'not null' => TRUE,
  6637. 6637       'default' => 0,
  6638. 6638     ),
  6639. 6639     'gid' => array(
  6640. 6640       'type' => 'int',
  6641. 6641       'unsigned' => TRUE,
  6642. 6642       'not null' => TRUE,
  6643. 6643       'default' => 0,
  6644. 6644     ),
  6645. 6645     'realm' => array(
  6646. 6646       'type' => 'varchar',
  6647. 6647       'length' => 255,
  6648. 6648       'not null' => TRUE,
  6649. 6649       'default' => '',
  6650. 6650     ),
  6651. 6651     'grant_view' => array(
  6652. 6652       'type' => 'int',
  6653. 6653       'unsigned' => TRUE,
  6654. 6654       'not null' => TRUE,
  6655. 6655       'default' => 0,
  6656. 6656       'size' => 'tiny',
  6657. 6657     ),
  6658. 6658     'grant_update' => array(
  6659. 6659       'type' => 'int',
  6660. 6660       'unsigned' => TRUE,
  6661. 6661       'not null' => TRUE,
  6662. 6662       'default' => 0,
  6663. 6663       'size' => 'tiny',
  6664. 6664     ),
  6665. 6665     'grant_delete' => array(
  6666. 6666       'type' => 'int',
  6667. 6667       'unsigned' => TRUE,
  6668. 6668       'not null' => TRUE,
  6669. 6669       'default' => 0,
  6670. 6670       'size' => 'tiny',
  6671. 6671     ),
  6672. 6672   ),
  6673. 6673   'primary key' => array(
  6674. 6674     'nid',
  6675. 6675     'gid',
  6676. 6676     'realm',
  6677. 6677   ),
  6678. 6678   'module' => 'node',
  6679. 6679   'name' => 'node_access',
  6680. 6680 ));
  6681. 6681 db_insert('node_access')->fields(array(
  6682. 6682   'nid',
  6683. 6683   'gid',
  6684. 6684   'realm',
  6685. 6685   'grant_view',
  6686. 6686   'grant_update',
  6687. 6687   'grant_delete',
  6688. 6688 ))
  6689. 6689 ->values(array(
  6690. 6690   'nid' => '0',
  6691. 6691   'gid' => '0',
  6692. 6692   'realm' => 'all',
  6693. 6693   'grant_view' => '1',
  6694. 6694   'grant_update' => '0',
  6695. 6695   'grant_delete' => '0',
  6696. 6696 ))
  6697. 6697 ->execute();
  6698. 6698 
  6699. 6699 db_create_table('node_counter', array(
  6700. 6700   'fields' => array(
  6701. 6701     'nid' => array(
  6702. 6702       'type' => 'int',
  6703. 6703       'not null' => TRUE,
  6704. 6704       'default' => 0,
  6705. 6705     ),
  6706. 6706     'totalcount' => array(
  6707. 6707       'type' => 'int',
  6708. 6708       'unsigned' => TRUE,
  6709. 6709       'not null' => TRUE,
  6710. 6710       'default' => 0,
  6711. 6711       'size' => 'big',
  6712. 6712     ),
  6713. 6713     'daycount' => array(
  6714. 6714       'type' => 'int',
  6715. 6715       'unsigned' => TRUE,
  6716. 6716       'not null' => TRUE,
  6717. 6717       'default' => 0,
  6718. 6718       'size' => 'medium',
  6719. 6719     ),
  6720. 6720     'timestamp' => array(
  6721. 6721       'type' => 'int',
  6722. 6722       'unsigned' => TRUE,
  6723. 6723       'not null' => TRUE,
  6724. 6724       'default' => 0,
  6725. 6725     ),
  6726. 6726   ),
  6727. 6727   'primary key' => array(
  6728. 6728     'nid',
  6729. 6729   ),
  6730. 6730   'module' => 'node',
  6731. 6731   'name' => 'node_counter',
  6732. 6732 ));
  6733. 6733 
  6734. 6734 db_create_table('node_revisions', array(
  6735. 6735   'fields' => array(
  6736. 6736     'nid' => array(
  6737. 6737       'type' => 'int',
  6738. 6738       'unsigned' => TRUE,
  6739. 6739       'not null' => TRUE,
  6740. 6740       'default' => 0,
  6741. 6741     ),
  6742. 6742     'vid' => array(
  6743. 6743       'type' => 'serial',
  6744. 6744       'unsigned' => TRUE,
  6745. 6745       'not null' => TRUE,
  6746. 6746     ),
  6747. 6747     'uid' => array(
  6748. 6748       'type' => 'int',
  6749. 6749       'not null' => TRUE,
  6750. 6750       'default' => 0,
  6751. 6751     ),
  6752. 6752     'title' => array(
  6753. 6753       'type' => 'varchar',
  6754. 6754       'length' => 255,
  6755. 6755       'not null' => TRUE,
  6756. 6756       'default' => '',
  6757. 6757     ),
  6758. 6758     'body' => array(
  6759. 6759       'type' => 'text',
  6760. 6760       'not null' => TRUE,
  6761. 6761       'size' => 'big',
  6762. 6762     ),
  6763. 6763     'teaser' => array(
  6764. 6764       'type' => 'text',
  6765. 6765       'not null' => TRUE,
  6766. 6766       'size' => 'big',
  6767. 6767     ),
  6768. 6768     'log' => array(
  6769. 6769       'type' => 'text',
  6770. 6770       'not null' => TRUE,
  6771. 6771       'size' => 'big',
  6772. 6772     ),
  6773. 6773     'timestamp' => array(
  6774. 6774       'type' => 'int',
  6775. 6775       'not null' => TRUE,
  6776. 6776       'default' => 0,
  6777. 6777     ),
  6778. 6778     'format' => array(
  6779. 6779       'type' => 'int',
  6780. 6780       'not null' => TRUE,
  6781. 6781       'default' => 0,
  6782. 6782     ),
  6783. 6783   ),
  6784. 6784   'indexes' => array(
  6785. 6785     'nid' => array(
  6786. 6786       'nid',
  6787. 6787     ),
  6788. 6788     'uid' => array(
  6789. 6789       'uid',
  6790. 6790     ),
  6791. 6791   ),
  6792. 6792   'primary key' => array(
  6793. 6793     'vid',
  6794. 6794   ),
  6795. 6795   'module' => 'node',
  6796. 6796   'name' => 'node_revisions',
  6797. 6797 ));
  6798. 6798 
  6799. 6799 db_create_table('node_type', array(
  6800. 6800   'fields' => array(
  6801. 6801     'type' => array(
  6802. 6802       'type' => 'varchar',
  6803. 6803       'length' => 32,
  6804. 6804       'not null' => TRUE,
  6805. 6805     ),
  6806. 6806     'name' => array(
  6807. 6807       'type' => 'varchar',
  6808. 6808       'length' => 255,
  6809. 6809       'not null' => TRUE,
  6810. 6810       'default' => '',
  6811. 6811     ),
  6812. 6812     'module' => array(
  6813. 6813       'type' => 'varchar',
  6814. 6814       'length' => 255,
  6815. 6815       'not null' => TRUE,
  6816. 6816     ),
  6817. 6817     'description' => array(
  6818. 6818       'type' => 'text',
  6819. 6819       'not null' => TRUE,
  6820. 6820       'size' => 'medium',
  6821. 6821     ),
  6822. 6822     'help' => array(
  6823. 6823       'type' => 'text',
  6824. 6824       'not null' => TRUE,
  6825. 6825       'size' => 'medium',
  6826. 6826     ),
  6827. 6827     'has_title' => array(
  6828. 6828       'type' => 'int',
  6829. 6829       'unsigned' => TRUE,
  6830. 6830       'not null' => TRUE,
  6831. 6831       'size' => 'tiny',
  6832. 6832     ),
  6833. 6833     'title_label' => array(
  6834. 6834       'type' => 'varchar',
  6835. 6835       'length' => 255,
  6836. 6836       'not null' => TRUE,
  6837. 6837       'default' => '',
  6838. 6838     ),
  6839. 6839     'has_body' => array(
  6840. 6840       'type' => 'int',
  6841. 6841       'unsigned' => TRUE,
  6842. 6842       'not null' => TRUE,
  6843. 6843       'size' => 'tiny',
  6844. 6844     ),
  6845. 6845     'body_label' => array(
  6846. 6846       'type' => 'varchar',
  6847. 6847       'length' => 255,
  6848. 6848       'not null' => TRUE,
  6849. 6849       'default' => '',
  6850. 6850     ),
  6851. 6851     'min_word_count' => array(
  6852. 6852       'type' => 'int',
  6853. 6853       'unsigned' => TRUE,
  6854. 6854       'not null' => TRUE,
  6855. 6855       'size' => 'small',
  6856. 6856     ),
  6857. 6857     'custom' => array(
  6858. 6858       'type' => 'int',
  6859. 6859       'not null' => TRUE,
  6860. 6860       'default' => 0,
  6861. 6861       'size' => 'tiny',
  6862. 6862     ),
  6863. 6863     'modified' => array(
  6864. 6864       'type' => 'int',
  6865. 6865       'not null' => TRUE,
  6866. 6866       'default' => 0,
  6867. 6867       'size' => 'tiny',
  6868. 6868     ),
  6869. 6869     'locked' => array(
  6870. 6870       'type' => 'int',
  6871. 6871       'not null' => TRUE,
  6872. 6872       'default' => 0,
  6873. 6873       'size' => 'tiny',
  6874. 6874     ),
  6875. 6875     'orig_type' => array(
  6876. 6876       'type' => 'varchar',
  6877. 6877       'length' => 255,
  6878. 6878       'not null' => TRUE,
  6879. 6879       'default' => '',
  6880. 6880     ),
  6881. 6881   ),
  6882. 6882   'primary key' => array(
  6883. 6883     'type',
  6884. 6884   ),
  6885. 6885   'module' => 'node',
  6886. 6886   'name' => 'node_type',
  6887. 6887 ));
  6888. 6888 db_insert('node_type')->fields(array(
  6889. 6889   'type',
  6890. 6890   'name',
  6891. 6891   'module',
  6892. 6892   'description',
  6893. 6893   'help',
  6894. 6894   'has_title',
  6895. 6895   'title_label',
  6896. 6896   'has_body',
  6897. 6897   'body_label',
  6898. 6898   'min_word_count',
  6899. 6899   'custom',
  6900. 6900   'modified',
  6901. 6901   'locked',
  6902. 6902   'orig_type',
  6903. 6903 ))
  6904. 6904 ->values(array(
  6905. 6905   'type' => 'page',
  6906. 6906   'name' => 'Page',
  6907. 6907   'module' => 'node',
  6908. 6908   'description' => "A <em>page</em>, similar in form to a <em>story</em>, is a simple method for creating and displaying information that rarely changes, such as an \"About us\" section of a website. By default, a <em>page</em> entry does not allow visitor comments and is not featured on the site's initial home page.",
  6909. 6909   'help' => '',
  6910. 6910   'has_title' => '1',
  6911. 6911   'title_label' => 'Title',
  6912. 6912   'has_body' => '1',
  6913. 6913   'body_label' => 'Body',
  6914. 6914   'min_word_count' => '0',
  6915. 6915   'custom' => '1',
  6916. 6916   'modified' => '1',
  6917. 6917   'locked' => '0',
  6918. 6918   'orig_type' => 'page',
  6919. 6919 ))
  6920. 6920 ->values(array(
  6921. 6921   'type' => 'story',
  6922. 6922   'name' => 'Story',
  6923. 6923   'module' => 'node',
  6924. 6924   'description' => "A <em>story</em>, similar in form to a <em>page</em>, is ideal for creating and displaying content that informs or engages website visitors. Press releases, site announcements, and informal blog-like entries may all be created with a <em>story</em> entry. By default, a <em>story</em> entry is automatically featured on the site's initial home page, and provides the ability to post comments.",
  6925. 6925   'help' => '',
  6926. 6926   'has_title' => '1',
  6927. 6927   'title_label' => 'Title',
  6928. 6928   'has_body' => '1',
  6929. 6929   'body_label' => 'Body',
  6930. 6930   'min_word_count' => '0',
  6931. 6931   'custom' => '1',
  6932. 6932   'modified' => '1',
  6933. 6933   'locked' => '0',
  6934. 6934   'orig_type' => 'story',
  6935. 6935 ))
  6936. 6936 ->execute();
  6937. 6937 
  6938. 6938 db_create_table('permission', array(
  6939. 6939   'fields' => array(
  6940. 6940     'pid' => array(
  6941. 6941       'type' => 'serial',
  6942. 6942       'not null' => TRUE,
  6943. 6943     ),
  6944. 6944     'rid' => array(
  6945. 6945       'type' => 'int',
  6946. 6946       'unsigned' => TRUE,
  6947. 6947       'not null' => TRUE,
  6948. 6948       'default' => 0,
  6949. 6949     ),
  6950. 6950     'perm' => array(
  6951. 6951       'type' => 'text',
  6952. 6952       'not null' => FALSE,
  6953. 6953       'size' => 'big',
  6954. 6954     ),
  6955. 6955     'tid' => array(
  6956. 6956       'type' => 'int',
  6957. 6957       'unsigned' => TRUE,
  6958. 6958       'not null' => TRUE,
  6959. 6959       'default' => 0,
  6960. 6960     ),
  6961. 6961   ),
  6962. 6962   'primary key' => array(
  6963. 6963     'pid',
  6964. 6964   ),
  6965. 6965   'indexes' => array(
  6966. 6966     'rid' => array(
  6967. 6967       'rid',
  6968. 6968     ),
  6969. 6969   ),
  6970. 6970   'module' => 'user',
  6971. 6971   'name' => 'permission',
  6972. 6972 ));
  6973. 6973 db_insert('permission')->fields(array(
  6974. 6974   'pid',
  6975. 6975   'rid',
  6976. 6976   'perm',
  6977. 6977   'tid',
  6978. 6978 ))
  6979. 6979 ->values(array(
  6980. 6980   'pid' => '1',
  6981. 6981   'rid' => '1',
  6982. 6982   'perm' => 'access content',
  6983. 6983   'tid' => '0',
  6984. 6984 ))
  6985. 6985 ->values(array(
  6986. 6986   'pid' => '2',
  6987. 6987   'rid' => '2',
  6988. 6988   'perm' => 'access comments, access content, post comments, post comments without approval',
  6989. 6989   'tid' => '0',
  6990. 6990 ))
  6991. 6991 ->execute();
  6992. 6992 
  6993. 6993 db_create_table('role', array(
  6994. 6994   'fields' => array(
  6995. 6995     'rid' => array(
  6996. 6996       'type' => 'serial',
  6997. 6997       'unsigned' => TRUE,
  6998. 6998       'not null' => TRUE,
  6999. 6999     ),
  7000. 7000     'name' => array(
  7001. 7001       'type' => 'varchar',
  7002. 7002       'length' => 64,
  7003. 7003       'not null' => TRUE,
  7004. 7004       'default' => '',
  7005. 7005     ),
  7006. 7006   ),
  7007. 7007   'unique keys' => array(
  7008. 7008     'name' => array(
  7009. 7009       'name',
  7010. 7010     ),
  7011. 7011   ),
  7012. 7012   'primary key' => array(
  7013. 7013     'rid',
  7014. 7014   ),
  7015. 7015   'module' => 'user',
  7016. 7016   'name' => 'role',
  7017. 7017 ));
  7018. 7018 db_insert('role')->fields(array(
  7019. 7019   'rid',
  7020. 7020   'name',
  7021. 7021 ))
  7022. 7022 ->values(array(
  7023. 7023   'rid' => '1',
  7024. 7024   'name' => 'anonymous user',
  7025. 7025 ))
  7026. 7026 ->values(array(
  7027. 7027   'rid' => '2',
  7028. 7028   'name' => 'authenticated user',
  7029. 7029 ))
  7030. 7030 ->execute();
  7031. 7031 
  7032. 7032 db_create_table('semaphore', array(
  7033. 7033   'fields' => array(
  7034. 7034     'name' => array(
  7035. 7035       'type' => 'varchar',
  7036. 7036       'length' => 255,
  7037. 7037       'not null' => TRUE,
  7038. 7038       'default' => '',
  7039. 7039     ),
  7040. 7040     'value' => array(
  7041. 7041       'type' => 'varchar',
  7042. 7042       'length' => 255,
  7043. 7043       'not null' => TRUE,
  7044. 7044       'default' => '',
  7045. 7045     ),
  7046. 7046     'expire' => array(
  7047. 7047       'type' => 'float',
  7048. 7048       'size' => 'big',
  7049. 7049       'not null' => TRUE,
  7050. 7050     ),
  7051. 7051   ),
  7052. 7052   'indexes' => array(
  7053. 7053     'expire' => array(
  7054. 7054       'expire',
  7055. 7055     ),
  7056. 7056   ),
  7057. 7057   'primary key' => array(
  7058. 7058     'name',
  7059. 7059   ),
  7060. 7060   'module' => 'system',
  7061. 7061   'name' => 'semaphore',
  7062. 7062 ));
  7063. 7063 
  7064. 7064 db_create_table('sessions', array(
  7065. 7065   'fields' => array(
  7066. 7066     'uid' => array(
  7067. 7067       'type' => 'int',
  7068. 7068       'unsigned' => TRUE,
  7069. 7069       'not null' => TRUE,
  7070. 7070     ),
  7071. 7071     'sid' => array(
  7072. 7072       'type' => 'varchar',
  7073. 7073       'length' => 64,
  7074. 7074       'not null' => TRUE,
  7075. 7075       'default' => '',
  7076. 7076     ),
  7077. 7077     'hostname' => array(
  7078. 7078       'type' => 'varchar',
  7079. 7079       'length' => 128,
  7080. 7080       'not null' => TRUE,
  7081. 7081       'default' => '',
  7082. 7082     ),
  7083. 7083     'timestamp' => array(
  7084. 7084       'type' => 'int',
  7085. 7085       'not null' => TRUE,
  7086. 7086       'default' => 0,
  7087. 7087     ),
  7088. 7088     'cache' => array(
  7089. 7089       'type' => 'int',
  7090. 7090       'not null' => TRUE,
  7091. 7091       'default' => 0,
  7092. 7092     ),
  7093. 7093     'session' => array(
  7094. 7094       'type' => 'text',
  7095. 7095       'not null' => FALSE,
  7096. 7096       'size' => 'big',
  7097. 7097     ),
  7098. 7098   ),
  7099. 7099   'primary key' => array(
  7100. 7100     'sid',
  7101. 7101   ),
  7102. 7102   'indexes' => array(
  7103. 7103     'timestamp' => array(
  7104. 7104       'timestamp',
  7105. 7105     ),
  7106. 7106     'uid' => array(
  7107. 7107       'uid',
  7108. 7108     ),
  7109. 7109   ),
  7110. 7110   'module' => 'system',
  7111. 7111   'name' => 'sessions',
  7112. 7112 ));
  7113. 7113 
  7114. 7114 db_create_table('system', array(
  7115. 7115   'fields' => array(
  7116. 7116     'filename' => array(
  7117. 7117       'type' => 'varchar',
  7118. 7118       'length' => 255,
  7119. 7119       'not null' => TRUE,
  7120. 7120       'default' => '',
  7121. 7121     ),
  7122. 7122     'name' => array(
  7123. 7123       'type' => 'varchar',
  7124. 7124       'length' => 255,
  7125. 7125       'not null' => TRUE,
  7126. 7126       'default' => '',
  7127. 7127     ),
  7128. 7128     'type' => array(
  7129. 7129       'type' => 'varchar',
  7130. 7130       'length' => 255,
  7131. 7131       'not null' => TRUE,
  7132. 7132       'default' => '',
  7133. 7133     ),
  7134. 7134     'owner' => array(
  7135. 7135       'type' => 'varchar',
  7136. 7136       'length' => 255,
  7137. 7137       'not null' => TRUE,
  7138. 7138       'default' => '',
  7139. 7139     ),
  7140. 7140     'status' => array(
  7141. 7141       'type' => 'int',
  7142. 7142       'not null' => TRUE,
  7143. 7143       'default' => 0,
  7144. 7144     ),
  7145. 7145     'throttle' => array(
  7146. 7146       'type' => 'int',
  7147. 7147       'not null' => TRUE,
  7148. 7148       'default' => 0,
  7149. 7149       'size' => 'tiny',
  7150. 7150     ),
  7151. 7151     'bootstrap' => array(
  7152. 7152       'type' => 'int',
  7153. 7153       'not null' => TRUE,
  7154. 7154       'default' => 0,
  7155. 7155     ),
  7156. 7156     'schema_version' => array(
  7157. 7157       'type' => 'int',
  7158. 7158       'not null' => TRUE,
  7159. 7159       'default' => -1,
  7160. 7160       'size' => 'small',
  7161. 7161     ),
  7162. 7162     'weight' => array(
  7163. 7163       'type' => 'int',
  7164. 7164       'not null' => TRUE,
  7165. 7165       'default' => 0,
  7166. 7166     ),
  7167. 7167     'info' => array(
  7168. 7168       'type' => 'text',
  7169. 7169       'not null' => FALSE,
  7170. 7170     ),
  7171. 7171   ),
  7172. 7172   'primary key' => array(
  7173. 7173     'filename',
  7174. 7174   ),
  7175. 7175   'indexes' => array(
  7176. 7176     'modules' => array(
  7177. 7177       array(
  7178. 7178         'type',
  7179. 7179         12,
  7180. 7180       ),
  7181. 7181       'status',
  7182. 7182       'weight',
  7183. 7183       'filename',
  7184. 7184     ),
  7185. 7185     'bootstrap' => array(
  7186. 7186       array(
  7187. 7187         'type',
  7188. 7188         12,
  7189. 7189       ),
  7190. 7190       'status',
  7191. 7191       'bootstrap',
  7192. 7192       'weight',
  7193. 7193       'filename',
  7194. 7194     ),
  7195. 7195     'type_name' => array(
  7196. 7196       array(
  7197. 7197         'type',
  7198. 7198         12,
  7199. 7199       ),
  7200. 7200       'name',
  7201. 7201     ),
  7202. 7202   ),
  7203. 7203   'module' => 'system',
  7204. 7204   'name' => 'system',
  7205. 7205 ));
  7206. 7206 db_insert('system')->fields(array(
  7207. 7207   'filename',
  7208. 7208   'name',
  7209. 7209   'type',
  7210. 7210   'owner',
  7211. 7211   'status',
  7212. 7212   'throttle',
  7213. 7213   'bootstrap',
  7214. 7214   'schema_version',
  7215. 7215   'weight',
  7216. 7216   'info',
  7217. 7217 ))
  7218. 7218 ->values(array(
  7219. 7219   'filename' => 'modules/aggregator/aggregator.module',
  7220. 7220   'name' => 'aggregator',
  7221. 7221   'type' => 'module',
  7222. 7222   'owner' => '',
  7223. 7223   'status' => '0',
  7224. 7224   'throttle' => '0',
  7225. 7225   'bootstrap' => '0',
  7226. 7226   'schema_version' => '-1',
  7227. 7227   'weight' => '0',
  7228. 7228   'info' => 'a:10:{s:4:"name";s:10:"Aggregator";s:11:"description";s:57:"Aggregates syndicated content (RSS, RDF, and Atom feeds).";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
  7229. 7229 ))
  7230. 7230 ->values(array(
  7231. 7231   'filename' => 'modules/block/block.module',
  7232. 7232   'name' => 'block',
  7233. 7233   'type' => 'module',
  7234. 7234   'owner' => '',
  7235. 7235   'status' => '1',
  7236. 7236   'throttle' => '0',
  7237. 7237   'bootstrap' => '0',
  7238. 7238   'schema_version' => '0',
  7239. 7239   'weight' => '0',
  7240. 7240   'info' => 'a:10:{s:4:"name";s:5:"Block";s:11:"description";s:62:"Controls the boxes that are displayed around the main content.";s:7:"package";s:15:"Core - required";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
  7241. 7241 ))
  7242. 7242 ->values(array(
  7243. 7243   'filename' => 'modules/blog/blog.module',
  7244. 7244   'name' => 'blog',
  7245. 7245   'type' => 'module',
  7246. 7246   'owner' => '',
  7247. 7247   'status' => '0',
  7248. 7248   'throttle' => '0',
  7249. 7249   'bootstrap' => '0',
  7250. 7250   'schema_version' => '-1',
  7251. 7251   'weight' => '0',
  7252. 7252   'info' => 'a:10:{s:4:"name";s:4:"Blog";s:11:"description";s:69:"Enables keeping easily and regularly updated user web pages or blogs.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
  7253. 7253 ))
  7254. 7254 ->values(array(
  7255. 7255   'filename' => 'modules/blogapi/blogapi.module',
  7256. 7256   'name' => 'blogapi',
  7257. 7257   'type' => 'module',
  7258. 7258   'owner' => '',
  7259. 7259   'status' => '0',
  7260. 7260   'throttle' => '0',
  7261. 7261   'bootstrap' => '0',
  7262. 7262   'schema_version' => '-1',
  7263. 7263   'weight' => '0',
  7264. 7264   'info' => 'a:10:{s:4:"name";s:8:"Blog API";s:11:"description";s:79:"Allows users to post content using applications that support XML-RPC blog APIs.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
  7265. 7265 ))
  7266. 7266 ->values(array(
  7267. 7267   'filename' => 'modules/book/book.module',
  7268. 7268   'name' => 'book',
  7269. 7269   'type' => 'module',
  7270. 7270   'owner' => '',
  7271. 7271   'status' => '0',
  7272. 7272   'throttle' => '0',
  7273. 7273   'bootstrap' => '0',
  7274. 7274   'schema_version' => '-1',
  7275. 7275   'weight' => '0',
  7276. 7276   'info' => 'a:10:{s:4:"name";s:4:"Book";s:11:"description";s:63:"Allows users to structure site pages in a hierarchy or outline.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
  7277. 7277 ))
  7278. 7278 ->values(array(
  7279. 7279   'filename' => 'modules/color/color.module',
  7280. 7280   'name' => 'color',
  7281. 7281   'type' => 'module',
  7282. 7282   'owner' => '',
  7283. 7283   'status' => '0',
  7284. 7284   'throttle' => '0',
  7285. 7285   'bootstrap' => '0',
  7286. 7286   'schema_version' => '-1',
  7287. 7287   'weight' => '0',
  7288. 7288   'info' => 'a:10:{s:4:"name";s:5:"Color";s:11:"description";s:61:"Allows the user to change the color scheme of certain themes.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
  7289. 7289 ))
  7290. 7290 ->values(array(
  7291. 7291   'filename' => 'modules/comment/comment.module',
  7292. 7292   'name' => 'comment',
  7293. 7293   'type' => 'module',
  7294. 7294   'owner' => '',
  7295. 7295   'status' => '0',
  7296. 7296   'throttle' => '0',
  7297. 7297   'bootstrap' => '0',
  7298. 7298   'schema_version' => '-1',
  7299. 7299   'weight' => '0',
  7300. 7300   'info' => 'a:10:{s:4:"name";s:7:"Comment";s:11:"description";s:57:"Allows users to comment on and discuss published content.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
  7301. 7301 ))
  7302. 7302 ->values(array(
  7303. 7303   'filename' => 'modules/contact/contact.module',
  7304. 7304   'name' => 'contact',
  7305. 7305   'type' => 'module',
  7306. 7306   'owner' => '',
  7307. 7307   'status' => '0',
  7308. 7308   'throttle' => '0',
  7309. 7309   'bootstrap' => '0',
  7310. 7310   'schema_version' => '-1',
  7311. 7311   'weight' => '0',
  7312. 7312   'info' => 'a:10:{s:4:"name";s:7:"Contact";s:11:"description";s:61:"Enables the use of both personal and site-wide contact forms.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
  7313. 7313 ))
  7314. 7314 ->values(array(
  7315. 7315   'filename' => 'modules/dblog/dblog.module',
  7316. 7316   'name' => 'dblog',
  7317. 7317   'type' => 'module',
  7318. 7318   'owner' => '',
  7319. 7319   'status' => '1',
  7320. 7320   'throttle' => '0',
  7321. 7321   'bootstrap' => '0',
  7322. 7322   'schema_version' => '6000',
  7323. 7323   'weight' => '0',
  7324. 7324   'info' => 'a:10:{s:4:"name";s:16:"Database logging";s:11:"description";s:47:"Logs and records system events to the database.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
  7325. 7325 ))
  7326. 7326 ->values(array(
  7327. 7327   'filename' => 'modules/filter/filter.module',
  7328. 7328   'name' => 'filter',
  7329. 7329   'type' => 'module',
  7330. 7330   'owner' => '',
  7331. 7331   'status' => '1',
  7332. 7332   'throttle' => '0',
  7333. 7333   'bootstrap' => '0',
  7334. 7334   'schema_version' => '0',
  7335. 7335   'weight' => '0',
  7336. 7336   'info' => 'a:10:{s:4:"name";s:6:"Filter";s:11:"description";s:60:"Handles the filtering of content in preparation for display.";s:7:"package";s:15:"Core - required";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
  7337. 7337 ))
  7338. 7338 ->values(array(
  7339. 7339   'filename' => 'modules/forum/forum.module',
  7340. 7340   'name' => 'forum',
  7341. 7341   'type' => 'module',
  7342. 7342   'owner' => '',
  7343. 7343   'status' => '0',
  7344. 7344   'throttle' => '0',
  7345. 7345   'bootstrap' => '0',
  7346. 7346   'schema_version' => '-1',
  7347. 7347   'weight' => '0',
  7348. 7348   'info' => 'a:10:{s:4:"name";s:5:"Forum";s:11:"description";s:50:"Enables threaded discussions about general topics.";s:12:"dependencies";a:2:{i:0;s:8:"taxonomy";i:1;s:7:"comment";}s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
  7349. 7349 ))
  7350. 7350 ->values(array(
  7351. 7351   'filename' => 'modules/help/help.module',
  7352. 7352   'name' => 'help',
  7353. 7353   'type' => 'module',
  7354. 7354   'owner' => '',
  7355. 7355   'status' => '0',
  7356. 7356   'throttle' => '0',
  7357. 7357   'bootstrap' => '0',
  7358. 7358   'schema_version' => '-1',
  7359. 7359   'weight' => '0',
  7360. 7360   'info' => 'a:10:{s:4:"name";s:4:"Help";s:11:"description";s:35:"Manages the display of online help.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
  7361. 7361 ))
  7362. 7362 ->values(array(
  7363. 7363   'filename' => 'modules/locale/locale.module',
  7364. 7364   'name' => 'locale',
  7365. 7365   'type' => 'module',
  7366. 7366   'owner' => '',
  7367. 7367   'status' => '0',
  7368. 7368   'throttle' => '0',
  7369. 7369   'bootstrap' => '0',
  7370. 7370   'schema_version' => '-1',
  7371. 7371   'weight' => '0',
  7372. 7372   'info' => 'a:10:{s:4:"name";s:6:"Locale";s:11:"description";s:119:"Adds language handling functionality and enables the translation of the user interface to languages other than English.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
  7373. 7373 ))
  7374. 7374 ->values(array(
  7375. 7375   'filename' => 'modules/menu/menu.module',
  7376. 7376   'name' => 'menu',
  7377. 7377   'type' => 'module',
  7378. 7378   'owner' => '',
  7379. 7379   'status' => '0',
  7380. 7380   'throttle' => '0',
  7381. 7381   'bootstrap' => '0',
  7382. 7382   'schema_version' => '-1',
  7383. 7383   'weight' => '0',
  7384. 7384   'info' => 'a:10:{s:4:"name";s:4:"Menu";s:11:"description";s:60:"Allows administrators to customize the site navigation menu.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
  7385. 7385 ))
  7386. 7386 ->values(array(
  7387. 7387   'filename' => 'modules/node/node.module',
  7388. 7388   'name' => 'node',
  7389. 7389   'type' => 'module',
  7390. 7390   'owner' => '',
  7391. 7391   'status' => '1',
  7392. 7392   'throttle' => '0',
  7393. 7393   'bootstrap' => '0',
  7394. 7394   'schema_version' => '0',
  7395. 7395   'weight' => '0',
  7396. 7396   'info' => 'a:10:{s:4:"name";s:4:"Node";s:11:"description";s:66:"Allows content to be submitted to the site and displayed on pages.";s:7:"package";s:15:"Core - required";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
  7397. 7397 ))
  7398. 7398 ->values(array(
  7399. 7399   'filename' => 'modules/openid/openid.module',
  7400. 7400   'name' => 'openid',
  7401. 7401   'type' => 'module',
  7402. 7402   'owner' => '',
  7403. 7403   'status' => '0',
  7404. 7404   'throttle' => '0',
  7405. 7405   'bootstrap' => '0',
  7406. 7406   'schema_version' => '-1',
  7407. 7407   'weight' => '0',
  7408. 7408   'info' => 'a:10:{s:4:"name";s:6:"OpenID";s:11:"description";s:48:"Allows users to log into your site using OpenID.";s:7:"version";s:4:"6.17";s:7:"package";s:15:"Core - optional";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
  7409. 7409 ))
  7410. 7410 ->values(array(
  7411. 7411   'filename' => 'modules/path/path.module',
  7412. 7412   'name' => 'path',
  7413. 7413   'type' => 'module',
  7414. 7414   'owner' => '',
  7415. 7415   'status' => '0',
  7416. 7416   'throttle' => '0',
  7417. 7417   'bootstrap' => '0',
  7418. 7418   'schema_version' => '-1',
  7419. 7419   'weight' => '0',
  7420. 7420   'info' => 'a:10:{s:4:"name";s:4:"Path";s:11:"description";s:28:"Allows users to rename URLs.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
  7421. 7421 ))
  7422. 7422 ->values(array(
  7423. 7423   'filename' => 'modules/php/php.module',
  7424. 7424   'name' => 'php',
  7425. 7425   'type' => 'module',
  7426. 7426   'owner' => '',
  7427. 7427   'status' => '0',
  7428. 7428   'throttle' => '0',
  7429. 7429   'bootstrap' => '0',
  7430. 7430   'schema_version' => '-1',
  7431. 7431   'weight' => '0',
  7432. 7432   'info' => 'a:10:{s:4:"name";s:10:"PHP filter";s:11:"description";s:50:"Allows embedded PHP code/snippets to be evaluated.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
  7433. 7433 ))
  7434. 7434 ->values(array(
  7435. 7435   'filename' => 'modules/ping/ping.module',
  7436. 7436   'name' => 'ping',
  7437. 7437   'type' => 'module',
  7438. 7438   'owner' => '',
  7439. 7439   'status' => '0',
  7440. 7440   'throttle' => '0',
  7441. 7441   'bootstrap' => '0',
  7442. 7442   'schema_version' => '-1',
  7443. 7443   'weight' => '0',
  7444. 7444   'info' => 'a:10:{s:4:"name";s:4:"Ping";s:11:"description";s:51:"Alerts other sites when your site has been updated.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
  7445. 7445 ))
  7446. 7446 ->values(array(
  7447. 7447   'filename' => 'modules/poll/poll.module',
  7448. 7448   'name' => 'poll',
  7449. 7449   'type' => 'module',
  7450. 7450   'owner' => '',
  7451. 7451   'status' => '0',
  7452. 7452   'throttle' => '0',
  7453. 7453   'bootstrap' => '0',
  7454. 7454   'schema_version' => '-1',
  7455. 7455   'weight' => '0',
  7456. 7456   'info' => 'a:10:{s:4:"name";s:4:"Poll";s:11:"description";s:95:"Allows your site to capture votes on different topics in the form of multiple choice questions.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
  7457. 7457 ))
  7458. 7458 ->values(array(
  7459. 7459   'filename' => 'modules/profile/profile.module',
  7460. 7460   'name' => 'profile',
  7461. 7461   'type' => 'module',
  7462. 7462   'owner' => '',
  7463. 7463   'status' => '0',
  7464. 7464   'throttle' => '0',
  7465. 7465   'bootstrap' => '0',
  7466. 7466   'schema_version' => '-1',
  7467. 7467   'weight' => '0',
  7468. 7468   'info' => 'a:10:{s:4:"name";s:7:"Profile";s:11:"description";s:36:"Supports configurable user profiles.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
  7469. 7469 ))
  7470. 7470 ->values(array(
  7471. 7471   'filename' => 'modules/search/search.module',
  7472. 7472   'name' => 'search',
  7473. 7473   'type' => 'module',
  7474. 7474   'owner' => '',
  7475. 7475   'status' => '0',
  7476. 7476   'throttle' => '0',
  7477. 7477   'bootstrap' => '0',
  7478. 7478   'schema_version' => '-1',
  7479. 7479   'weight' => '0',
  7480. 7480   'info' => 'a:10:{s:4:"name";s:6:"Search";s:11:"description";s:36:"Enables site-wide keyword searching.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
  7481. 7481 ))
  7482. 7482 ->values(array(
  7483. 7483   'filename' => 'modules/statistics/statistics.module',
  7484. 7484   'name' => 'statistics',
  7485. 7485   'type' => 'module',
  7486. 7486   'owner' => '',
  7487. 7487   'status' => '0',
  7488. 7488   'throttle' => '0',
  7489. 7489   'bootstrap' => '0',
  7490. 7490   'schema_version' => '-1',
  7491. 7491   'weight' => '0',
  7492. 7492   'info' => 'a:10:{s:4:"name";s:10:"Statistics";s:11:"description";s:37:"Logs access statistics for your site.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
  7493. 7493 ))
  7494. 7494 ->values(array(
  7495. 7495   'filename' => 'modules/syslog/syslog.module',
  7496. 7496   'name' => 'syslog',
  7497. 7497   'type' => 'module',
  7498. 7498   'owner' => '',
  7499. 7499   'status' => '0',
  7500. 7500   'throttle' => '0',
  7501. 7501   'bootstrap' => '0',
  7502. 7502   'schema_version' => '-1',
  7503. 7503   'weight' => '0',
  7504. 7504   'info' => 'a:10:{s:4:"name";s:6:"Syslog";s:11:"description";s:41:"Logs and records system events to syslog.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
  7505. 7505 ))
  7506. 7506 ->values(array(
  7507. 7507   'filename' => 'modules/system/system.module',
  7508. 7508   'name' => 'system',
  7509. 7509   'type' => 'module',
  7510. 7510   'owner' => '',
  7511. 7511   'status' => '1',
  7512. 7512   'throttle' => '0',
  7513. 7513   'bootstrap' => '0',
  7514. 7514   'schema_version' => '6055',
  7515. 7515   'weight' => '0',
  7516. 7516   'info' => 'a:10:{s:4:"name";s:6:"System";s:11:"description";s:54:"Handles general site configuration for administrators.";s:7:"package";s:15:"Core - required";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
  7517. 7517 ))
  7518. 7518 ->values(array(
  7519. 7519   'filename' => 'modules/taxonomy/taxonomy.module',
  7520. 7520   'name' => 'taxonomy',
  7521. 7521   'type' => 'module',
  7522. 7522   'owner' => '',
  7523. 7523   'status' => '0',
  7524. 7524   'throttle' => '0',
  7525. 7525   'bootstrap' => '0',
  7526. 7526   'schema_version' => '-1',
  7527. 7527   'weight' => '0',
  7528. 7528   'info' => 'a:10:{s:4:"name";s:8:"Taxonomy";s:11:"description";s:38:"Enables the categorization of content.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
  7529. 7529 ))
  7530. 7530 ->values(array(
  7531. 7531   'filename' => 'modules/throttle/throttle.module',
  7532. 7532   'name' => 'throttle',
  7533. 7533   'type' => 'module',
  7534. 7534   'owner' => '',
  7535. 7535   'status' => '0',
  7536. 7536   'throttle' => '0',
  7537. 7537   'bootstrap' => '0',
  7538. 7538   'schema_version' => '-1',
  7539. 7539   'weight' => '0',
  7540. 7540   'info' => 'a:10:{s:4:"name";s:8:"Throttle";s:11:"description";s:66:"Handles the auto-throttling mechanism, to control site congestion.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
  7541. 7541 ))
  7542. 7542 ->values(array(
  7543. 7543   'filename' => 'modules/tracker/tracker.module',
  7544. 7544   'name' => 'tracker',
  7545. 7545   'type' => 'module',
  7546. 7546   'owner' => '',
  7547. 7547   'status' => '0',
  7548. 7548   'throttle' => '0',
  7549. 7549   'bootstrap' => '0',
  7550. 7550   'schema_version' => '-1',
  7551. 7551   'weight' => '0',
  7552. 7552   'info' => 'a:10:{s:4:"name";s:7:"Tracker";s:11:"description";s:43:"Enables tracking of recent posts for users.";s:12:"dependencies";a:1:{i:0;s:7:"comment";}s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
  7553. 7553 ))
  7554. 7554 ->values(array(
  7555. 7555   'filename' => 'modules/translation/translation.module',
  7556. 7556   'name' => 'translation',
  7557. 7557   'type' => 'module',
  7558. 7558   'owner' => '',
  7559. 7559   'status' => '0',
  7560. 7560   'throttle' => '0',
  7561. 7561   'bootstrap' => '0',
  7562. 7562   'schema_version' => '-1',
  7563. 7563   'weight' => '0',
  7564. 7564   'info' => 'a:10:{s:4:"name";s:19:"Content translation";s:11:"description";s:57:"Allows content to be translated into different languages.";s:12:"dependencies";a:1:{i:0;s:6:"locale";}s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
  7565. 7565 ))
  7566. 7566 ->values(array(
  7567. 7567   'filename' => 'modules/trigger/trigger.module',
  7568. 7568   'name' => 'trigger',
  7569. 7569   'type' => 'module',
  7570. 7570   'owner' => '',
  7571. 7571   'status' => '0',
  7572. 7572   'throttle' => '0',
  7573. 7573   'bootstrap' => '0',
  7574. 7574   'schema_version' => '-1',
  7575. 7575   'weight' => '0',
  7576. 7576   'info' => 'a:10:{s:4:"name";s:7:"Trigger";s:11:"description";s:90:"Enables actions to be fired on certain system events, such as when new content is created.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
  7577. 7577 ))
  7578. 7578 ->values(array(
  7579. 7579   'filename' => 'modules/update/update.module',
  7580. 7580   'name' => 'update',
  7581. 7581   'type' => 'module',
  7582. 7582   'owner' => '',
  7583. 7583   'status' => '1',
  7584. 7584   'throttle' => '0',
  7585. 7585   'bootstrap' => '0',
  7586. 7586   'schema_version' => '6000',
  7587. 7587   'weight' => '0',
  7588. 7588   'info' => 'a:10:{s:4:"name";s:13:"Update status";s:11:"description";s:88:"Checks the status of available updates for Drupal and your installed modules and themes.";s:7:"version";s:4:"6.17";s:7:"package";s:15:"Core - optional";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
  7589. 7589 ))
  7590. 7590 ->values(array(
  7591. 7591   'filename' => 'modules/upload/upload.module',
  7592. 7592   'name' => 'upload',
  7593. 7593   'type' => 'module',
  7594. 7594   'owner' => '',
  7595. 7595   'status' => '0',
  7596. 7596   'throttle' => '0',
  7597. 7597   'bootstrap' => '0',
  7598. 7598   'schema_version' => '-1',
  7599. 7599   'weight' => '0',
  7600. 7600   'info' => 'a:10:{s:4:"name";s:6:"Upload";s:11:"description";s:51:"Allows users to upload and attach files to content.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
  7601. 7601 ))
  7602. 7602 ->values(array(
  7603. 7603   'filename' => 'modules/user/user.module',
  7604. 7604   'name' => 'user',
  7605. 7605   'type' => 'module',
  7606. 7606   'owner' => '',
  7607. 7607   'status' => '1',
  7608. 7608   'throttle' => '0',
  7609. 7609   'bootstrap' => '0',
  7610. 7610   'schema_version' => '0',
  7611. 7611   'weight' => '0',
  7612. 7612   'info' => 'a:10:{s:4:"name";s:4:"User";s:11:"description";s:47:"Manages the user registration and login system.";s:7:"package";s:15:"Core - required";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
  7613. 7613 ))
  7614. 7614 ->values(array(
  7615. 7615   'filename' => 'themes/bluemarine/bluemarine.info',
  7616. 7616   'name' => 'bluemarine',
  7617. 7617   'type' => 'theme',
  7618. 7618   'owner' => 'themes/engines/phptemplate/phptemplate.engine',
  7619. 7619   'status' => '0',
  7620. 7620   'throttle' => '0',
  7621. 7621   'bootstrap' => '0',
  7622. 7622   'schema_version' => '-1',
  7623. 7623   'weight' => '0',
  7624. 7624   'info' => 'a:13:{s:4:"name";s:10:"Bluemarine";s:11:"description";s:66:"Table-based multi-column theme with a marine and ash color scheme.";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:27:"themes/bluemarine/style.css";}}s:7:"scripts";a:1:{s:9:"script.js";s:27:"themes/bluemarine/script.js";}s:10:"screenshot";s:32:"themes/bluemarine/screenshot.png";s:3:"php";s:5:"4.3.5";}',
  7625. 7625 ))
  7626. 7626 ->values(array(
  7627. 7627   'filename' => 'themes/chameleon/chameleon.info',
  7628. 7628   'name' => 'chameleon',
  7629. 7629   'type' => 'theme',
  7630. 7630   'owner' => 'themes/chameleon/chameleon.theme',
  7631. 7631   'status' => '0',
  7632. 7632   'throttle' => '0',
  7633. 7633   'bootstrap' => '0',
  7634. 7634   'schema_version' => '-1',
  7635. 7635   'weight' => '0',
  7636. 7636   'info' => 'a:12:{s:4:"name";s:9:"Chameleon";s:11:"description";s:42:"Minimalist tabled theme with light colors.";s:7:"regions";a:2:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";}s:8:"features";a:4:{i:0;s:4:"logo";i:1;s:7:"favicon";i:2;s:4:"name";i:3;s:6:"slogan";}s:11:"stylesheets";a:1:{s:3:"all";a:2:{s:9:"style.css";s:26:"themes/chameleon/style.css";s:10:"common.css";s:27:"themes/chameleon/common.css";}}s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:7:"scripts";a:1:{s:9:"script.js";s:26:"themes/chameleon/script.js";}s:10:"screenshot";s:31:"themes/chameleon/screenshot.png";s:3:"php";s:5:"4.3.5";}',
  7637. 7637 ))
  7638. 7638 ->values(array(
  7639. 7639   'filename' => 'themes/chameleon/marvin/marvin.info',
  7640. 7640   'name' => 'marvin',
  7641. 7641   'type' => 'theme',
  7642. 7642   'owner' => '',
  7643. 7643   'status' => '0',
  7644. 7644   'throttle' => '0',
  7645. 7645   'bootstrap' => '0',
  7646. 7646   'schema_version' => '-1',
  7647. 7647   'weight' => '0',
  7648. 7648   'info' => 'a:13:{s:4:"name";s:6:"Marvin";s:11:"description";s:31:"Boxy tabled theme in all grays.";s:7:"regions";a:2:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";}s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:10:"base theme";s:9:"chameleon";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:33:"themes/chameleon/marvin/style.css";}}s:7:"scripts";a:1:{s:9:"script.js";s:33:"themes/chameleon/marvin/script.js";}s:10:"screenshot";s:38:"themes/chameleon/marvin/screenshot.png";s:3:"php";s:5:"4.3.5";}',
  7649. 7649 ))
  7650. 7650 ->values(array(
  7651. 7651   'filename' => 'themes/garland/garland.info',
  7652. 7652   'name' => 'garland',
  7653. 7653   'type' => 'theme',
  7654. 7654   'owner' => 'themes/engines/phptemplate/phptemplate.engine',
  7655. 7655   'status' => '1',
  7656. 7656   'throttle' => '0',
  7657. 7657   'bootstrap' => '0',
  7658. 7658   'schema_version' => '-1',
  7659. 7659   'weight' => '0',
  7660. 7660   'info' => 'a:13:{s:4:"name";s:7:"Garland";s:11:"description";s:66:"Tableless, recolorable, multi-column, fluid width theme (default).";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";s:11:"stylesheets";a:2:{s:3:"all";a:1:{s:9:"style.css";s:24:"themes/garland/style.css";}s:5:"print";a:1:{s:9:"print.css";s:24:"themes/garland/print.css";}}s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:7:"scripts";a:1:{s:9:"script.js";s:24:"themes/garland/script.js";}s:10:"screenshot";s:29:"themes/garland/screenshot.png";s:3:"php";s:5:"4.3.5";}',
  7661. 7661 ))
  7662. 7662 ->values(array(
  7663. 7663   'filename' => 'themes/garland/minnelli/minnelli.info',
  7664. 7664   'name' => 'minnelli',
  7665. 7665   'type' => 'theme',
  7666. 7666   'owner' => 'themes/engines/phptemplate/phptemplate.engine',
  7667. 7667   'status' => '0',
  7668. 7668   'throttle' => '0',
  7669. 7669   'bootstrap' => '0',
  7670. 7670   'schema_version' => '-1',
  7671. 7671   'weight' => '0',
  7672. 7672   'info' => 'a:14:{s:4:"name";s:8:"Minnelli";s:11:"description";s:56:"Tableless, recolorable, multi-column, fixed width theme.";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:10:"base theme";s:7:"garland";s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:12:"minnelli.css";s:36:"themes/garland/minnelli/minnelli.css";}}s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:7:"scripts";a:1:{s:9:"script.js";s:33:"themes/garland/minnelli/script.js";}s:10:"screenshot";s:38:"themes/garland/minnelli/screenshot.png";s:3:"php";s:5:"4.3.5";s:6:"engine";s:11:"phptemplate";}',
  7673. 7673 ))
  7674. 7674 ->values(array(
  7675. 7675   'filename' => 'themes/pushbutton/pushbutton.info',
  7676. 7676   'name' => 'pushbutton',
  7677. 7677   'type' => 'theme',
  7678. 7678   'owner' => 'themes/engines/phptemplate/phptemplate.engine',
  7679. 7679   'status' => '0',
  7680. 7680   'throttle' => '0',
  7681. 7681   'bootstrap' => '0',
  7682. 7682   'schema_version' => '-1',
  7683. 7683   'weight' => '0',
  7684. 7684   'info' => 'a:13:{s:4:"name";s:10:"Pushbutton";s:11:"description";s:52:"Tabled, multi-column theme in blue and orange tones.";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:27:"themes/pushbutton/style.css";}}s:7:"scripts";a:1:{s:9:"script.js";s:27:"themes/pushbutton/script.js";}s:10:"screenshot";s:32:"themes/pushbutton/screenshot.png";s:3:"php";s:5:"4.3.5";}',
  7685. 7685 ))
  7686. 7686 ->execute();
  7687. 7687 
  7688. 7688 db_create_table('url_alias', array(
  7689. 7689   'fields' => array(
  7690. 7690     'pid' => array(
  7691. 7691       'type' => 'serial',
  7692. 7692       'unsigned' => TRUE,
  7693. 7693       'not null' => TRUE,
  7694. 7694     ),
  7695. 7695     'src' => array(
  7696. 7696       'type' => 'varchar',
  7697. 7697       'length' => 128,
  7698. 7698       'not null' => TRUE,
  7699. 7699       'default' => '',
  7700. 7700     ),
  7701. 7701     'dst' => array(
  7702. 7702       'type' => 'varchar',
  7703. 7703       'length' => 128,
  7704. 7704       'not null' => TRUE,
  7705. 7705       'default' => '',
  7706. 7706     ),
  7707. 7707     'language' => array(
  7708. 7708       'type' => 'varchar',
  7709. 7709       'length' => 12,
  7710. 7710       'not null' => TRUE,
  7711. 7711       'default' => '',
  7712. 7712     ),
  7713. 7713   ),
  7714. 7714   'unique keys' => array(
  7715. 7715     'dst_language_pid' => array(
  7716. 7716       'dst',
  7717. 7717       'language',
  7718. 7718       'pid',
  7719. 7719     ),
  7720. 7720   ),
  7721. 7721   'primary key' => array(
  7722. 7722     'pid',
  7723. 7723   ),
  7724. 7724   'indexes' => array(
  7725. 7725     'src_language_pid' => array(
  7726. 7726       'src',
  7727. 7727       'language',
  7728. 7728       'pid',
  7729. 7729     ),
  7730. 7730   ),
  7731. 7731   'module' => 'system',
  7732. 7732   'name' => 'url_alias',
  7733. 7733 ));
  7734. 7734 
  7735. 7735 db_create_table('users', array(
  7736. 7736   'fields' => array(
  7737. 7737     'uid' => array(
  7738. 7738       'type' => 'serial',
  7739. 7739       'unsigned' => TRUE,
  7740. 7740       'not null' => TRUE,
  7741. 7741     ),
  7742. 7742     'name' => array(
  7743. 7743       'type' => 'varchar',
  7744. 7744       'length' => 60,
  7745. 7745       'not null' => TRUE,
  7746. 7746       'default' => '',
  7747. 7747     ),
  7748. 7748     'pass' => array(
  7749. 7749       'type' => 'varchar',
  7750. 7750       'length' => 32,
  7751. 7751       'not null' => TRUE,
  7752. 7752       'default' => '',
  7753. 7753     ),
  7754. 7754     'mail' => array(
  7755. 7755       'type' => 'varchar',
  7756. 7756       'length' => 64,
  7757. 7757       'not null' => FALSE,
  7758. 7758       'default' => '',
  7759. 7759     ),
  7760. 7760     'mode' => array(
  7761. 7761       'type' => 'int',
  7762. 7762       'not null' => TRUE,
  7763. 7763       'default' => 0,
  7764. 7764       'size' => 'tiny',
  7765. 7765     ),
  7766. 7766     'sort' => array(
  7767. 7767       'type' => 'int',
  7768. 7768       'not null' => FALSE,
  7769. 7769       'default' => 0,
  7770. 7770       'size' => 'tiny',
  7771. 7771     ),
  7772. 7772     'threshold' => array(
  7773. 7773       'type' => 'int',
  7774. 7774       'not null' => FALSE,
  7775. 7775       'default' => 0,
  7776. 7776       'size' => 'tiny',
  7777. 7777     ),
  7778. 7778     'theme' => array(
  7779. 7779       'type' => 'varchar',
  7780. 7780       'length' => 255,
  7781. 7781       'not null' => TRUE,
  7782. 7782       'default' => '',
  7783. 7783     ),
  7784. 7784     'signature' => array(
  7785. 7785       'type' => 'varchar',
  7786. 7786       'length' => 255,
  7787. 7787       'not null' => TRUE,
  7788. 7788       'default' => '',
  7789. 7789     ),
  7790. 7790     'signature_format' => array(
  7791. 7791       'type' => 'int',
  7792. 7792       'size' => 'small',
  7793. 7793       'not null' => TRUE,
  7794. 7794       'default' => 0,
  7795. 7795     ),
  7796. 7796     'created' => array(
  7797. 7797       'type' => 'int',
  7798. 7798       'not null' => TRUE,
  7799. 7799       'default' => 0,
  7800. 7800     ),
  7801. 7801     'access' => array(
  7802. 7802       'type' => 'int',
  7803. 7803       'not null' => TRUE,
  7804. 7804       'default' => 0,
  7805. 7805     ),
  7806. 7806     'login' => array(
  7807. 7807       'type' => 'int',
  7808. 7808       'not null' => TRUE,
  7809. 7809       'default' => 0,
  7810. 7810     ),
  7811. 7811     'status' => array(
  7812. 7812       'type' => 'int',
  7813. 7813       'not null' => TRUE,
  7814. 7814       'default' => 0,
  7815. 7815       'size' => 'tiny',
  7816. 7816     ),
  7817. 7817     'timezone' => array(
  7818. 7818       'type' => 'varchar',
  7819. 7819       'length' => 8,
  7820. 7820       'not null' => FALSE,
  7821. 7821     ),
  7822. 7822     'language' => array(
  7823. 7823       'type' => 'varchar',
  7824. 7824       'length' => 12,
  7825. 7825       'not null' => TRUE,
  7826. 7826       'default' => '',
  7827. 7827     ),
  7828. 7828     'picture' => array(
  7829. 7829       'type' => 'varchar',
  7830. 7830       'length' => 255,
  7831. 7831       'not null' => TRUE,
  7832. 7832       'default' => '',
  7833. 7833     ),
  7834. 7834     'init' => array(
  7835. 7835       'type' => 'varchar',
  7836. 7836       'length' => 64,
  7837. 7837       'not null' => FALSE,
  7838. 7838       'default' => '',
  7839. 7839     ),
  7840. 7840     'data' => array(
  7841. 7841       'type' => 'text',
  7842. 7842       'not null' => FALSE,
  7843. 7843       'size' => 'big',
  7844. 7844     ),
  7845. 7845   ),
  7846. 7846   'indexes' => array(
  7847. 7847     'access' => array(
  7848. 7848       'access',
  7849. 7849     ),
  7850. 7850     'created' => array(
  7851. 7851       'created',
  7852. 7852     ),
  7853. 7853     'mail' => array(
  7854. 7854       'mail',
  7855. 7855     ),
  7856. 7856   ),
  7857. 7857   'unique keys' => array(
  7858. 7858     'name' => array(
  7859. 7859       'name',
  7860. 7860     ),
  7861. 7861   ),
  7862. 7862   'primary key' => array(
  7863. 7863     'uid',
  7864. 7864   ),
  7865. 7865   'module' => 'user',
  7866. 7866   'name' => 'users',
  7867. 7867 ));
  7868. 7868 db_insert('users')->fields(array(
  7869. 7869   'uid',
  7870. 7870   'name',
  7871. 7871   'pass',
  7872. 7872   'mail',
  7873. 7873   'mode',
  7874. 7874   'sort',
  7875. 7875   'threshold',
  7876. 7876   'theme',
  7877. 7877   'signature',
  7878. 7878   'signature_format',
  7879. 7879   'created',
  7880. 7880   'access',
  7881. 7881   'login',
  7882. 7882   'status',
  7883. 7883   'timezone',
  7884. 7884   'language',
  7885. 7885   'picture',
  7886. 7886   'init',
  7887. 7887   'data',
  7888. 7888 ))
  7889. 7889 ->values(array(
  7890. 7890   'uid' => 1,
  7891. 7891   'name' => '',
  7892. 7892   'pass' => '',
  7893. 7893   'mail' => '',
  7894. 7894   'mode' => '0',
  7895. 7895   'sort' => '0',
  7896. 7896   'threshold' => '0',
  7897. 7897   'theme' => '',
  7898. 7898   'signature' => '',
  7899. 7899   'signature_format' => '0',
  7900. 7900   'created' => '0',
  7901. 7901   'access' => '0',
  7902. 7902   'login' => '0',
  7903. 7903   'status' => '0',
  7904. 7904   'timezone' => '-21600',
  7905. 7905   'language' => '',
  7906. 7906   'picture' => '',
  7907. 7907   'init' => '',
  7908. 7908   'data' => NULL,
  7909. 7909 ))
  7910. 7910 ->values(array(
  7911. 7911   'uid' => 2,
  7912. 7912   'name' => 'admin',
  7913. 7913   'pass' => '21232f297a57a5a743894a0e4a801fc3',
  7914. 7914   'mail' => 'admin@example.com',
  7915. 7915   'mode' => '0',
  7916. 7916   'sort' => '0',
  7917. 7917   'threshold' => '0',
  7918. 7918   'theme' => '',
  7919. 7919   'signature' => '',
  7920. 7920   'signature_format' => '0',
  7921. 7921   'created' => '1277671599',
  7922. 7922   'access' => '1277671612',
  7923. 7923   'login' => '1277671612',
  7924. 7924   'status' => '1',
  7925. 7925   'timezone' => '-21600',
  7926. 7926   'language' => '',
  7927. 7927   'picture' => '',
  7928. 7928   'init' => 'admin@example.com',
  7929. 7929   'data' => 'a:0:{}',
  7930. 7930 ))
  7931. 7931 ->execute();
  7932. 7932 db_query('UPDATE {users} SET uid = uid - 1');
  7933. 7933 
  7934. 7934 db_create_table('users_roles', array(
  7935. 7935   'fields' => array(
  7936. 7936     'uid' => array(
  7937. 7937       'type' => 'int',
  7938. 7938       'unsigned' => TRUE,
  7939. 7939       'not null' => TRUE,
  7940. 7940       'default' => 0,
  7941. 7941     ),
  7942. 7942     'rid' => array(
  7943. 7943       'type' => 'int',
  7944. 7944       'unsigned' => TRUE,
  7945. 7945       'not null' => TRUE,
  7946. 7946       'default' => 0,
  7947. 7947     ),
  7948. 7948   ),
  7949. 7949   'primary key' => array(
  7950. 7950     'uid',
  7951. 7951     'rid',
  7952. 7952   ),
  7953. 7953   'indexes' => array(
  7954. 7954     'rid' => array(
  7955. 7955       'rid',
  7956. 7956     ),
  7957. 7957   ),
  7958. 7958   'module' => 'user',
  7959. 7959   'name' => 'users_roles',
  7960. 7960 ));
  7961. 7961 
  7962. 7962 db_create_table('variable', array(
  7963. 7963   'fields' => array(
  7964. 7964     'name' => array(
  7965. 7965       'type' => 'varchar',
  7966. 7966       'length' => 128,
  7967. 7967       'not null' => TRUE,
  7968. 7968       'default' => '',
  7969. 7969     ),
  7970. 7970     'value' => array(
  7971. 7971       'type' => 'text',
  7972. 7972       'not null' => TRUE,
  7973. 7973       'size' => 'big',
  7974. 7974     ),
  7975. 7975   ),
  7976. 7976   'primary key' => array(
  7977. 7977     'name',
  7978. 7978   ),
  7979. 7979   'module' => 'system',
  7980. 7980   'name' => 'variable',
  7981. 7981 ));
  7982. 7982 db_insert('variable')->fields(array(
  7983. 7983   'name',
  7984. 7984   'value',
  7985. 7985 ))
  7986. 7986 ->values(array(
  7987. 7987   'name' => 'clean_url',
  7988. 7988   'value' => 's:1:"1";',
  7989. 7989 ))
  7990. 7990 ->values(array(
  7991. 7991   'name' => 'comment_page',
  7992. 7992   'value' => 's:21:"COMMENT_NODE_DISABLED";',
  7993. 7993 ))
  7994. 7994 ->values(array(
  7995. 7995   'name' => 'css_js_query_string',
  7996. 7996   'value' => 's:20:"D0000000000000000000";',
  7997. 7997 ))
  7998. 7998 ->values(array(
  7999. 7999   'name' => 'date_default_timezone',
  8000. 8000   'value' => 's:1:"0";',
  8001. 8001 ))
  8002. 8002 ->values(array(
  8003. 8003   'name' => 'drupal_private_key',
  8004. 8004   'value' => 's:64:"3848c2187413fa0ce132f8e222fdb6893b386ed133e8cf602bd3e40dc9dc12db";',
  8005. 8005 ))
  8006. 8006 ->values(array(
  8007. 8007   'name' => 'filter_html_1',
  8008. 8008   'value' => 'i:1;',
  8009. 8009 ))
  8010. 8010 ->values(array(
  8011. 8011   'name' => 'install_profile',
  8012. 8012   'value' => 's:7:"default";',
  8013. 8013 ))
  8014. 8014 ->values(array(
  8015. 8015   'name' => 'install_task',
  8016. 8016   'value' => 's:4:"done";',
  8017. 8017 ))
  8018. 8018 ->values(array(
  8019. 8019   'name' => 'install_time',
  8020. 8020   'value' => 'i:1277671612;',
  8021. 8021 ))
  8022. 8022 ->values(array(
  8023. 8023   'name' => 'menu_expanded',
  8024. 8024   'value' => 'a:0:{}',
  8025. 8025 ))
  8026. 8026 ->values(array(
  8027. 8027   'name' => 'menu_masks',
  8028. 8028   'value' => 'a:13:{i:0;i:31;i:1;i:30;i:2;i:29;i:3;i:24;i:4;i:21;i:5;i:15;i:6;i:14;i:7;i:11;i:8;i:7;i:9;i:5;i:10;i:3;i:11;i:2;i:12;i:1;}',
  8029. 8029 ))
  8030. 8030 ->values(array(
  8031. 8031   'name' => 'node_options_forum',
  8032. 8032   'value' => 'a:1:{i:0;s:6:"status";}',
  8033. 8033 ))
  8034. 8034 ->values(array(
  8035. 8035   'name' => 'node_options_page',
  8036. 8036   'value' => 'a:1:{i:0;s:6:"status";}',
  8037. 8037 ))
  8038. 8038 ->values(array(
  8039. 8039   'name' => 'site_mail',
  8040. 8040   'value' => 's:17:"admin@example.com";',
  8041. 8041 ))
  8042. 8042 ->values(array(
  8043. 8043   'name' => 'site_name',
  8044. 8044   'value' => 's:8:"Drupal 6";',
  8045. 8045 ))
  8046. 8046 ->values(array(
  8047. 8047   'name' => 'theme_default',
  8048. 8048   'value' => 's:7:"garland";',
  8049. 8049 ))
  8050. 8050 ->values(array(
  8051. 8051   'name' => 'theme_settings',
  8052. 8052   'value' => 'a:1:{s:21:"toggle_node_info_page";b:0;}',
  8053. 8053 ))
  8054. 8054 ->values(array(
  8055. 8055   'name' => 'user_email_verification',
  8056. 8056   'value' => 'b:1;',
  8057. 8057 ))
  8058. 8058 ->execute();
  8059. 8059 
  8060. 8060 db_create_table('watchdog', array(
  8061. 8061   'fields' => array(
  8062. 8062     'wid' => array(
  8063. 8063       'type' => 'serial',
  8064. 8064       'not null' => TRUE,
  8065. 8065     ),
  8066. 8066     'uid' => array(
  8067. 8067       'type' => 'int',
  8068. 8068       'not null' => TRUE,
  8069. 8069       'default' => 0,
  8070. 8070     ),
  8071. 8071     'type' => array(
  8072. 8072       'type' => 'varchar',
  8073. 8073       'length' => 16,
  8074. 8074       'not null' => TRUE,
  8075. 8075       'default' => '',
  8076. 8076     ),
  8077. 8077     'message' => array(
  8078. 8078       'type' => 'text',
  8079. 8079       'not null' => TRUE,
  8080. 8080       'size' => 'big',
  8081. 8081     ),
  8082. 8082     'variables' => array(
  8083. 8083       'type' => 'text',
  8084. 8084       'not null' => TRUE,
  8085. 8085       'size' => 'big',
  8086. 8086     ),
  8087. 8087     'severity' => array(
  8088. 8088       'type' => 'int',
  8089. 8089       'unsigned' => TRUE,
  8090. 8090       'not null' => TRUE,
  8091. 8091       'default' => 0,
  8092. 8092       'size' => 'tiny',
  8093. 8093     ),
  8094. 8094     'link' => array(
  8095. 8095       'type' => 'varchar',
  8096. 8096       'length' => 255,
  8097. 8097       'not null' => TRUE,
  8098. 8098       'default' => '',
  8099. 8099     ),
  8100. 8100     'location' => array(
  8101. 8101       'type' => 'text',
  8102. 8102       'not null' => TRUE,
  8103. 8103     ),
  8104. 8104     'referer' => array(
  8105. 8105       'type' => 'text',
  8106. 8106       'not null' => FALSE,
  8107. 8107     ),
  8108. 8108     'hostname' => array(
  8109. 8109       'type' => 'varchar',
  8110. 8110       'length' => 128,
  8111. 8111       'not null' => TRUE,
  8112. 8112       'default' => '',
  8113. 8113     ),
  8114. 8114     'timestamp' => array(
  8115. 8115       'type' => 'int',
  8116. 8116       'not null' => TRUE,
  8117. 8117       'default' => 0,
  8118. 8118     ),
  8119. 8119   ),
  8120. 8120   'primary key' => array(
  8121. 8121     'wid',
  8122. 8122   ),
  8123. 8123   'indexes' => array(
  8124. 8124     'type' => array(
  8125. 8125       'type',
  8126. 8126     ),
  8127. 8127   ),
  8128. 8128   'module' => 'dblog',
  8129. 8129   'name' => 'watchdog',
  8130. 8130 ));